@@ -2,7 +2,6 @@ import React from 'react';
22import { ComponentStory } from '@storybook/react' ;
33
44import Button from '@/components/Primitives/Button' ;
5- import Sprite from '@/components/icons/Sprite' ;
65import Icon from '@/components/icons/Icon' ;
76import Flex from '@/components/Primitives/Flex' ;
87import Text from '@/components/Primitives/Text' ;
@@ -44,11 +43,6 @@ export default {
4443 exclude : [ 'ref' , 'as' , 'css' ] ,
4544 sort : 'requiredFirst' ,
4645 } ,
47- docs : {
48- description : {
49- component : '' , // Change main component description in docs page
50- } ,
51- } ,
5246 } ,
5347 args : {
5448 children : 'Lorem' ,
@@ -127,7 +121,6 @@ export const Variants: ComponentStory<typeof Button> = ({ children, disabled })
127121
128122export const IconButton : ComponentStory < typeof Button > = ( { children, disabled } ) => (
129123 < Flex justify = "evenly" wrap = "wrap" >
130- < Sprite />
131124 { VARIANT_OPTIONS . map ( ( variant ) => (
132125 < Flex direction = "column" justify = "center" align = "center" gap = { 20 } key = { variant } >
133126 < Text heading = "5" > Variant { variant } </ Text >
@@ -144,7 +137,6 @@ export const IconButton: ComponentStory<typeof Button> = ({ children, disabled }
144137
145138export const Icons : ComponentStory < typeof Button > = ( { disabled } ) => (
146139 < Flex justify = "evenly" wrap = "wrap" >
147- < Sprite />
148140 { SIZE_OPTIONS . map ( ( size ) => (
149141 < Flex direction = "column" justify = "center" align = "center" gap = { 20 } key = { size } >
150142 < Text heading = "5" > Size { size } </ Text >
0 commit comments