diff options
Diffstat (limited to 'src/components/atoms/icons/sun.stories.tsx')
| -rw-r--r-- | src/components/atoms/icons/sun.stories.tsx | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/components/atoms/icons/sun.stories.tsx b/src/components/atoms/icons/sun.stories.tsx index 613b59e..23c5b27 100644 --- a/src/components/atoms/icons/sun.stories.tsx +++ b/src/components/atoms/icons/sun.stories.tsx @@ -4,6 +4,34 @@ import SunIcon from './sun'; export default { title: 'Atoms/Icons', component: SunIcon, + argTypes: { + className: { + control: { + type: 'text', + }, + description: 'Set additional classnames.', + table: { + category: 'Styles', + }, + type: { + name: 'string', + required: false, + }, + }, + title: { + control: { + type: 'text', + }, + description: 'The SVG title.', + table: { + category: 'Accessibility', + }, + type: { + name: 'string', + required: false, + }, + }, + }, } as ComponentMeta<typeof SunIcon>; const Template: ComponentStory<typeof SunIcon> = (args) => ( |
