Skip to content

Commit

Permalink
feature: added SSITextH7SemiBold for react-native
Browse files Browse the repository at this point in the history
  • Loading branch information
Brummos committed Nov 4, 2024
1 parent c1d559b commit edc3a4d
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions packages/ssi-react-native/src/styles/fonts/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,3 +129,15 @@ export const SSITextH7Styled = styled.Text`
export const SSITextH7LightStyled = styled(SSITextH7Styled)`
color: ${fontColors.light};
`

export const SSITextH7SemiBoldStyled = styled.Text`
font-family: ${fontStyle.h7SemiBold.fontFamily};
font-size: ${fontStyle.h7SemiBold.fontSize}px;
font-weight: ${fontStyle.h7SemiBold.fontWeight};
line-height: ${fontStyle.h7SemiBold.lineHeight}px;
height: auto;
`

export const SSITextH7SemiBoldLightStyled = styled(SSITextH7SemiBoldStyled)`
color: ${fontColors.light};
`

0 comments on commit edc3a4d

Please sign in to comment.