summaryrefslogtreecommitdiffstats
path: root/src/components/atoms/icons/feed.stories.tsx
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-04-26 18:16:00 +0200
committerArmand Philippot <git@armandphilippot.com>2022-04-26 18:16:00 +0200
commit5324664e87bedfaa01ba62c0c847ef5b861e69b3 (patch)
treebeb3b76b89fa59ffd5192b540013e4d5f3e77740 /src/components/atoms/icons/feed.stories.tsx
parent8a6f09b564d5d2f02d0a2605f6b52070a910aaa3 (diff)
chore: add a Feed icon component
Diffstat (limited to 'src/components/atoms/icons/feed.stories.tsx')
-rw-r--r--src/components/atoms/icons/feed.stories.tsx34
1 files changed, 34 insertions, 0 deletions
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<typeof FeedIcon>;
+
+const Template: ComponentStory<typeof FeedIcon> = (args) => (
+ <FeedIcon {...args} />
+);
+
+/**
+ * Icons Stories - Feed
+ */
+export const Feed = Template.bind({});