aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/icons/home.stories.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/atoms/icons/home.stories.tsx')
-rw-r--r--src/components/atoms/icons/home.stories.tsx13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/components/atoms/icons/home.stories.tsx b/src/components/atoms/icons/home.stories.tsx
new file mode 100644
index 0000000..59eb477
--- /dev/null
+++ b/src/components/atoms/icons/home.stories.tsx
@@ -0,0 +1,13 @@
+import { ComponentMeta, ComponentStory } from '@storybook/react';
+import HomeIcon from './home';
+
+export default {
+ title: 'Atoms/Icons',
+ component: HomeIcon,
+} as ComponentMeta<typeof HomeIcon>;
+
+const Template: ComponentStory<typeof HomeIcon> = (args) => (
+ <HomeIcon {...args} />
+);
+
+export const Home = Template.bind({});