aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/icons/sun.stories.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/atoms/icons/sun.stories.tsx')
-rw-r--r--src/components/atoms/icons/sun.stories.tsx8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/components/atoms/icons/sun.stories.tsx b/src/components/atoms/icons/sun.stories.tsx
index 23c5b27..60af648 100644
--- a/src/components/atoms/icons/sun.stories.tsx
+++ b/src/components/atoms/icons/sun.stories.tsx
@@ -1,8 +1,11 @@
import { ComponentMeta, ComponentStory } from '@storybook/react';
import SunIcon from './sun';
+/**
+ * Sun icon - Storybook Meta
+ */
export default {
- title: 'Atoms/Icons',
+ title: 'Atoms/Illustrations/Icons',
component: SunIcon,
argTypes: {
className: {
@@ -38,4 +41,7 @@ const Template: ComponentStory<typeof SunIcon> = (args) => (
<SunIcon {...args} />
);
+/**
+ * Icons Stories - Sun
+ */
export const Sun = Template.bind({});