UNPKG

@sandlada/vue-mdc

Version:

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

38 lines (37 loc) 829 B
/** * @license * Copyright 2025 Sandlada & Kai Orion * SPDX-License-Identifier: MIT */ 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" }; const props = { variant: { default: TypographyVariant.BodyMedium, type: String }, tag: { default: "span", type: String } }; export { TypographyVariant, props }; //# sourceMappingURL=typography.definition.js.map