summaryrefslogtreecommitdiffstats
path: root/src/components/atoms/icons/career.stories.tsx
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-04-01 11:53:23 +0200
committerArmand Philippot <git@armandphilippot.com>2022-04-01 11:53:23 +0200
commit65da7e1ddaea17cb1391ce2bde5f4345acd7b4ad (patch)
tree1a05a2d83a5b726a58ebd49bb7317e94cce49c4d /src/components/atoms/icons/career.stories.tsx
parent3dba396791b37c4ae4dbdaf8e553ed636bc2ecc8 (diff)
chore: add a career icon component
Diffstat (limited to 'src/components/atoms/icons/career.stories.tsx')
-rw-r--r--src/components/atoms/icons/career.stories.tsx13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/components/atoms/icons/career.stories.tsx b/src/components/atoms/icons/career.stories.tsx
new file mode 100644
index 0000000..2c1d93a
--- /dev/null
+++ b/src/components/atoms/icons/career.stories.tsx
@@ -0,0 +1,13 @@
+import { ComponentMeta, ComponentStory } from '@storybook/react';
+import CareerIcon from './career';
+
+export default {
+ title: 'Atoms/Icons',
+ component: CareerIcon,
+} as ComponentMeta<typeof CareerIcon>;
+
+const Template: ComponentStory<typeof CareerIcon> = (args) => (
+ <CareerIcon {...args} />
+);
+
+export const Career = Template.bind({});