diff options
Diffstat (limited to 'src/components/atoms/icons/cc-by-sa.stories.tsx')
| -rw-r--r-- | src/components/atoms/icons/cc-by-sa.stories.tsx | 31 | 
1 files changed, 31 insertions, 0 deletions
| diff --git a/src/components/atoms/icons/cc-by-sa.stories.tsx b/src/components/atoms/icons/cc-by-sa.stories.tsx new file mode 100644 index 0000000..21d6cd5 --- /dev/null +++ b/src/components/atoms/icons/cc-by-sa.stories.tsx @@ -0,0 +1,31 @@ +import { ComponentMeta, ComponentStory } from '@storybook/react'; +import { IntlProvider } from 'react-intl'; +import CCBySAIcon from './cc-by-sa'; + +export default { +  title: 'Atoms/Icons', +  component: CCBySAIcon, +  argTypes: { +    className: { +      control: { +        type: 'text', +      }, +      description: 'Set additional classnames.', +      table: { +        category: 'Styles', +      }, +      type: { +        name: 'string', +        required: false, +      }, +    }, +  }, +} as ComponentMeta<typeof CCBySAIcon>; + +const Template: ComponentStory<typeof CCBySAIcon> = (args) => ( +  <IntlProvider locale="en"> +    <CCBySAIcon {...args} /> +  </IntlProvider> +); + +export const CCBySA = Template.bind({}); | 
