@primer/primitives
Version:
Typography, spacing, and color primitives for Primer design system
13 lines (12 loc) • 311 B
TypeScript
/**
* 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
}