blob: 42a93c9cebdba1c5b41e22aa23081468212934bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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({});
|