Skip to content

Commit

Permalink
storybook: SVGNavigation 스토리북 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
semnil5202 committed Oct 14, 2024
1 parent d63d220 commit 3c85bad
Showing 1 changed file with 17 additions and 22 deletions.
39 changes: 17 additions & 22 deletions src/stories/SVGNavigation.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
import { Meta, StoryObj } from '@storybook/react';

import {
SVGNavWrite24,
SVGNavActiveFeed,
SVGNavFeed,
SVGNavActiveProfile,
SVGNavProfile,
} from '../.';
SVGNavAlarm,
SVGNavAlarmFilled,
SVGNavEdit,
SVGNavEditFilled,
SVGNavHome,
SVGNavHomeFilled,
SVGNavUser,
SVGNavUserFilled,
} from '..';

const meta = {
title: 'Assets/SVG/Navigation',
Expand All @@ -19,21 +21,14 @@ type Story = StoryObj<object>;
export const Default: Story = {
render: () => (
<div style={{ display: 'flex', gap: '20px' }}>
<div
style={{
padding: 16,
width: 'min-content',
height: 'min-content',
backgroundColor: '#5F27FF',
borderRadius: '50%',
}}
>
<SVGNavWrite24 />
</div>
<SVGNavActiveFeed />
<SVGNavFeed />
<SVGNavActiveProfile />
<SVGNavProfile />
<SVGNavAlarm />
<SVGNavAlarmFilled />
<SVGNavEdit />
<SVGNavEditFilled />
<SVGNavHome />
<SVGNavHomeFilled />
<SVGNavUser />
<SVGNavUserFilled />
</div>
),
};

0 comments on commit 3c85bad

Please sign in to comment.