import type { Meta, StoryFn } from '@storybook/react'; import type { CollectionsIconProps } from './collections-icon'; import { AnimatedCollectionsIcon } from './collections-icon'; export default { title: 'UI/Lottie/Collection Icons', component: AnimatedCollectionsIcon, } satisfies Meta; const Template: StoryFn = args => ( ); export const Default: StoryFn = Template.bind(undefined); Default.args = {};