@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.
Files changed (2) hide show
  1. package/index.tsx +2 -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 = 'label_default';
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 = 'label_s';
38
+ typo = 'label_s_medium';
39
39
  }
40
40
 
41
41
  const renderOverlay = () => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@momo-kits/chip",
3
- "version": "0.81.43",
3
+ "version": "0.88.1",
4
4
  "private": false,
5
5
  "main": "index.tsx",
6
6
  "dependencies": {},