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