aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/icons/computer-screen.stories.tsx
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-04-01 11:43:38 +0200
committerArmand Philippot <git@armandphilippot.com>2022-04-01 11:43:38 +0200
commit769c124ff54960ac9db4f9028b095c1385cd3961 (patch)
treeec28364158db15fd7c242a9f71faf1e1087a089d /src/components/atoms/icons/computer-screen.stories.tsx
parent58005ad6ca761309eb8a92d2489030a7b1bad523 (diff)
chore: add a computer screen icon component
Diffstat (limited to 'src/components/atoms/icons/computer-screen.stories.tsx')
-rw-r--r--src/components/atoms/icons/computer-screen.stories.tsx13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/components/atoms/icons/computer-screen.stories.tsx b/src/components/atoms/icons/computer-screen.stories.tsx
new file mode 100644
index 0000000..317b4b6
--- /dev/null
+++ b/src/components/atoms/icons/computer-screen.stories.tsx
@@ -0,0 +1,13 @@
+import { ComponentMeta, ComponentStory } from '@storybook/react';
+import ComputerScreenIcon from './computer-screen';
+
+export default {
+ title: 'Atoms/Icons',
+ component: ComputerScreenIcon,
+} as ComponentMeta<typeof ComputerScreenIcon>;
+
+const Template: ComponentStory<typeof ComputerScreenIcon> = (args) => (
+ <ComputerScreenIcon {...args} />
+);
+
+export const ComputerScreen = Template.bind({});