import { Meta, Story } from '@storybook/react'; import { Clock, Icon } from 'lucide-react'; import { SidebarItem } from '.'; const meta: Meta = { title: 'Sidebar/SidebarItem', component: SidebarItem, }; export default meta; interface StoryProps { icon?: Icon; label: string; } function Template({ icon, label }: StoryProps) { return (