File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -8,16 +8,16 @@ type IChipStyled = {
8
8
styles ?: ChipPropsStylesType ;
9
9
} ;
10
10
11
- export const ChipStyled = styled . div < IChipStyled > `
11
+ export const ChipStyled = styled . span < IChipStyled > `
12
12
${ props => getStyles ( props . styles ?. chipContainer ) }
13
13
` ;
14
14
15
- export const RangeItemWrapperStyled = styled . p < IChipStyled > `
15
+ export const RangeItemWrapperStyled = styled . span < IChipStyled > `
16
16
${ props => getStyles ( props . styles ?. rangeItemWrapper ) }
17
17
` ;
18
18
19
- export const ErrorStyled = styled . div < IChipStyled > `
19
+ export const ErrorStyled = styled . span < IChipStyled > `
20
20
${ props => getStyles ( props . styles ?. errorContainer ) }
21
21
` ;
22
22
23
- export const RangeContainerStyled = styled . div `` ;
23
+ export const RangeContainerStyled = styled . span `` ;
You can’t perform that action at this time.
0 commit comments