Skip to content

Commit 89f0d15

Browse files
committed
feat(DirectionIcon): add component * 2
1 parent b8b93e7 commit 89f0d15

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

src/icons/Icons.stories.tsx

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,12 @@ const Template: StoryFn<CubeIconProps> = (name) => {
2727
<Title>16px</Title>
2828
<Grid columns="repeat(auto-fit, 200px)" flow="row" gap="16px">
2929
{Object.keys(Icons).map((iconName) => {
30-
if (iconName === 'Icon' || iconName === 'wrapIcon') return null;
30+
if (
31+
iconName === 'Icon' ||
32+
iconName === 'wrapIcon' ||
33+
iconName === 'DirectionIcon'
34+
)
35+
return null;
3136

3237
const Icon = Icons[iconName];
3338

@@ -42,7 +47,12 @@ const Template: StoryFn<CubeIconProps> = (name) => {
4247
<Title>32px</Title>
4348
<Grid columns="repeat(auto-fit, 200px)" flow="row" gap="16px">
4449
{Object.keys(Icons).map((iconName) => {
45-
if (iconName === 'Icon' || iconName === 'wrapIcon') return null;
50+
if (
51+
iconName === 'Icon' ||
52+
iconName === 'wrapIcon' ||
53+
iconName === 'DirectionIcon'
54+
)
55+
return null;
4656

4757
const Icon = Icons[iconName];
4858

0 commit comments

Comments
 (0)