import { ChevronDownIcon, InfoFilledIcon } from '@channel.io/bezier-icons' import { type Meta, type StoryFn, type StoryObj } from '@storybook/react' import { SectionLabel } from './SectionLabel' import type { SectionLabelProps } from './SectionLabel.types' const meta: Meta = { component: SectionLabel, } const Template: StoryFn = ({ children, ...rest }) => (
{children}
) export const Primary: StoryObj = { render: Template, args: { content: 'Sort by', leftContent: InfoFilledIcon, rightContent: ChevronDownIcon, }, } export default meta