@oslokommune/punkt-elements
Version:
Komponentbiblioteket til Punkt, et designsystem laget av Oslo Origo
10 lines (9 loc) • 345 B
TypeScript
/**
* heading.ts
*
* Type definitions for heading-related types.
* These represent HTML heading semantics (h1-h6) and typography scales.
*/
export type THeadingLevel = 1 | 2 | 3 | 4 | 5 | 6;
export type THeadingSize = 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge';
export type THeadingWeight = 'light' | 'regular' | 'medium' | 'bold';