blob: 2c1d93a08656940757bfd340ba615446faea4b61 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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({});
|