summaryrefslogtreecommitdiffstats
path: root/src/components/atoms/icons/computer-screen.stories.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/atoms/icons/computer-screen.stories.tsx')
-rw-r--r--src/components/atoms/icons/computer-screen.stories.tsx8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/components/atoms/icons/computer-screen.stories.tsx b/src/components/atoms/icons/computer-screen.stories.tsx
index 46e3ad4..19649ad 100644
--- a/src/components/atoms/icons/computer-screen.stories.tsx
+++ b/src/components/atoms/icons/computer-screen.stories.tsx
@@ -1,8 +1,11 @@
import { ComponentMeta, ComponentStory } from '@storybook/react';
import ComputerScreenIcon from './computer-screen';
+/**
+ * Computer Screen icon - Storybook Meta
+ */
export default {
- title: 'Atoms/Icons',
+ title: 'Atoms/Illustrations/Icons',
component: ComputerScreenIcon,
argTypes: {
className: {
@@ -25,4 +28,7 @@ const Template: ComponentStory<typeof ComputerScreenIcon> = (args) => (
<ComputerScreenIcon {...args} />
);
+/**
+ * Icons Stories - Computer Screen
+ */
export const ComputerScreen = Template.bind({});