/** * Type definition for w3c typography composite token value * @link https://design-tokens.github.io/community-group/format/#typography */ export type TypographyTokenValue = { fontFamily: string fontSize: number fontWeight: number lineHeight: number fontStyle?: string letterSpacing?: number }