From 5324664e87bedfaa01ba62c0c847ef5b861e69b3 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Tue, 26 Apr 2022 18:16:00 +0200 Subject: chore: add a Feed icon component --- src/components/atoms/icons/feed.stories.tsx | 34 +++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 src/components/atoms/icons/feed.stories.tsx (limited to 'src/components/atoms/icons/feed.stories.tsx') diff --git a/src/components/atoms/icons/feed.stories.tsx b/src/components/atoms/icons/feed.stories.tsx new file mode 100644 index 0000000..e3587a8 --- /dev/null +++ b/src/components/atoms/icons/feed.stories.tsx @@ -0,0 +1,34 @@ +import { ComponentMeta, ComponentStory } from '@storybook/react'; +import FeedIcon from './feed'; + +/** + * Feed icon - Storybook Meta + */ +export default { + title: 'Atoms/Illustrations/Icons', + component: FeedIcon, + argTypes: { + className: { + control: { + type: 'text', + }, + description: 'Set additional classnames.', + table: { + category: 'Styles', + }, + type: { + name: 'string', + required: false, + }, + }, + }, +} as ComponentMeta; + +const Template: ComponentStory = (args) => ( + +); + +/** + * Icons Stories - Feed + */ +export const Feed = Template.bind({}); -- cgit v1.2.3