import React, { HTMLAttributes } from 'react'; import classnames from 'classnames'; import { IconButton } from './IconButton'; import { Button } from './Button'; import useTheme from '../hooks/useTheme'; import { HStack } from './Stacks'; import { WindowDragRegion } from './WindowDragRegion'; type Props = Omit, 'children'>; export function Sidebar({ className, ...props }: Props) { const { toggleTheme } = useTheme(); return (
); }