mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-08-21 12:02:15 +08:00
17 lines
479 B
TypeScript
17 lines
479 B
TypeScript
import type { Meta, StoryFn } from '@storybook/react';
|
|
|
|
import type { DeleteIconProps } from './delete-icon';
|
|
import { AnimatedDeleteIcon } from './delete-icon';
|
|
|
|
export default {
|
|
title: 'UI/Lottie/Delete Icon',
|
|
component: AnimatedDeleteIcon,
|
|
} satisfies Meta<typeof AnimatedDeleteIcon>;
|
|
|
|
const Template: StoryFn<DeleteIconProps> = args => (
|
|
<AnimatedDeleteIcon {...args} />
|
|
);
|
|
|
|
export const Default: StoryFn<DeleteIconProps> = Template.bind(undefined);
|
|
Default.args = {};
|