import { DotsHorizontalIcon } from '@heroicons/react/outline'
export function MoreButton() {
return
}
function SidebarButton(props: {
text: string
icon: React.ComponentType<{ className?: string }>
children?: React.ReactNode
}) {
const { text, children } = props
return (
)
}