UNPKG

@sandlada/mdc

Version:

@sandlada/mdc is an open source component library that follows the Material Design 3 design specifications.

24 lines 1.17 kB
import type { LitElement } from 'lit'; export type TypographyVariant = 'display-large' | 'display-medium' | 'display-small' | 'headline-large' | 'headline-medium' | 'headline-small' | 'title-large' | 'title-medium' | 'title-small' | 'body-large' | 'body-medium' | 'body-small' | 'label-large' | 'label-medium' | 'label-small'; export declare const TypographyVariant: { readonly DisplayLarge: 'display-large'; readonly DisplayMedium: 'display-medium'; readonly DisplaySmall: 'display-small'; readonly HeadlineLarge: 'headline-large'; readonly HeadlineMedium: 'headline-medium'; readonly HeadlineSmall: 'headline-small'; readonly TitleLarge: 'title-large'; readonly TitleMedium: 'title-medium'; readonly TitleSmall: 'title-small'; readonly BodyLarge: 'body-large'; readonly BodyMedium: 'body-medium'; readonly BodySmall: 'body-small'; readonly LabelLarge: 'label-large'; readonly LabelMedium: 'label-medium'; readonly LabelSmall: 'label-small'; }; export interface ITypography extends LitElement { emphasized: boolean; variant: TypographyVariant; } //# sourceMappingURL=typography.interface.d.ts.map