UNPKG

@sandlada/vue-mdc

Version:

![Vue MDC Logo](https://raw.githubusercontent.com/sandlada/vue-mdc/refs/heads/main/docs/vue-mdc-cover.png)

26 lines (23 loc) 728 B
/** * @license * Copyright 2025 Sandlada & Kai Orion * SPDX-License-Identifier: MIT */ export const TypographyVariant = { LabelSmall: 'label-small', LabelMedium: 'label-medium', LabelLarge: 'label-large', BodySmall: 'body-small', BodyMedium: 'body-medium', BodyLarge: 'body-large', TitleSmall: 'title-small', TitleMedium: 'title-medium', TitleLarge: 'title-large', HeadlineSmall: 'headline-small', HeadlineMedium: 'headline-medium', HeadlineLarge: 'headline-large', DisplaySmall: 'display-small', DisplayMedium: 'display-medium', DisplayLarge: 'display-large', } as const export type TTypographyVariant = typeof TypographyVariant[keyof typeof TypographyVariant]