diff options
| author | Armand Philippot <git@armandphilippot.com> | 2022-03-31 23:29:17 +0200 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2022-04-01 11:21:07 +0200 |
| commit | 3951a875a5c7619196239ce5f288f832d2f51224 (patch) | |
| tree | 26724d06b29199a99f036a7c066e5d9bcd4496c0 /src/components/atoms/icons/cc-by-sa.stories.tsx | |
| parent | 60c284c7ad7383313886c5f4716589cb6c180693 (diff) | |
chore: add a CC BY SA svg icon component
Diffstat (limited to 'src/components/atoms/icons/cc-by-sa.stories.tsx')
| -rw-r--r-- | src/components/atoms/icons/cc-by-sa.stories.tsx | 16 |
1 files changed, 16 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..42a93c9 --- /dev/null +++ b/src/components/atoms/icons/cc-by-sa.stories.tsx @@ -0,0 +1,16 @@ +import { ComponentMeta, ComponentStory } from '@storybook/react'; +import { IntlProvider } from 'react-intl'; +import CCBySAIcon from './cc-by-sa'; + +export default { + title: 'Atoms/Icons', + component: CCBySAIcon, +} as ComponentMeta<typeof CCBySAIcon>; + +const Template: ComponentStory<typeof CCBySAIcon> = (args) => ( + <IntlProvider locale="en"> + <CCBySAIcon {...args} /> + </IntlProvider> +); + +export const CCBySA = Template.bind({}); |
