@momo-kits/chip 0.81.43 → 0.88.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.tsx +2 -2
- package/package.json +1 -1
package/index.tsx
CHANGED
|
@@ -27,7 +27,7 @@ const Chip: FC<ChipProps> = ({
|
|
|
27
27
|
? theme.colors.background.tonal
|
|
28
28
|
: theme.colors.border.default;
|
|
29
29
|
|
|
30
|
-
let typo: Typography = '
|
|
30
|
+
let typo: Typography = 'label_default_medium';
|
|
31
31
|
let chipStyle = styles.chip;
|
|
32
32
|
let imageStyle = styles.image;
|
|
33
33
|
let iconSize = 20;
|
|
@@ -35,7 +35,7 @@ const Chip: FC<ChipProps> = ({
|
|
|
35
35
|
chipStyle = styles.smallChip;
|
|
36
36
|
imageStyle = styles.imageSmall;
|
|
37
37
|
iconSize = 16;
|
|
38
|
-
typo = '
|
|
38
|
+
typo = 'label_s_medium';
|
|
39
39
|
}
|
|
40
40
|
|
|
41
41
|
const renderOverlay = () => {
|