Skip to content

Commit

Permalink
Set Label… default weight to Semibold, instead of Bold
Browse files Browse the repository at this point in the history
  • Loading branch information
dmnplb committed Aug 1, 2024
1 parent 7227d4b commit 13819ba
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/typography/Label.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const Label = forwardRef<View, LabelProps>(
const LabelProps: IOTextProps = {
...props,
font: "TitilliumSansPro",
weight: customWeight ?? "Bold",
weight: customWeight ?? "Semibold",
size: 16,
lineHeight: 24,
color: customColor ?? defaultColor,
Expand Down
2 changes: 1 addition & 1 deletion src/components/typography/LabelMini.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const LabelMini = forwardRef<View, LabelMiniProps>(
...props,
dynamicTypeRamp: "footnote" /* iOS only */,
font: "TitilliumSansPro",
weight: customWeight ?? "Bold",
weight: customWeight ?? "Semibold",
size: 12,
lineHeight: 18,
color: customColor ?? defaultColor,
Expand Down
2 changes: 1 addition & 1 deletion src/components/typography/LabelSmall.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const LabelSmall = forwardRef<View, LabelSmallProps>(
...props,
dynamicTypeRamp: "footnote" /* iOS only */,
font: "TitilliumSansPro",
weight: customWeight ?? "Bold",
weight: customWeight ?? "Semibold",
size: 14,
lineHeight: 21,
color: customColor ?? defaultColor,
Expand Down

0 comments on commit 13819ba

Please sign in to comment.