import { ComponentMeta, ComponentStory } from '@storybook/react'; import MoonIcon from './moon'; /** * Moon icon - Storybook Meta */ export default { title: 'Atoms/Illustrations/Icons', component: MoonIcon, argTypes: { 'aria-hidden': { control: { type: null, }, description: 'Should the svg be hidden from assistive technologies?', table: { category: 'Accessibility', }, type: { name: 'string', required: false, }, }, 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; const Template: ComponentStory = (args) => ( ); /** * Icons Stories - Moon */ export const Moon = Template.bind({});