File tree Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments