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