@porsche-design-system/components-angular
Version:
Porsche Design System is a component library designed to help developers create the best experience for software or services distributed by Dr. Ing. h.c. F. Porsche AG.
19 lines (16 loc) • 726 B
JavaScript
import { fontSizeTextLarge } from './fontSizeTextLarge.mjs';
import { fontSizeTextMedium } from './fontSizeTextMedium.mjs';
import { fontSizeTextSmall } from './fontSizeTextSmall.mjs';
import { fontSizeTextXLarge } from './fontSizeTextXLarge.mjs';
import { fontSizeTextXSmall } from './fontSizeTextXSmall.mjs';
import { fontSizeTextXXSmall } from './fontSizeTextXXSmall.mjs';
/** @deprecated since v4.0.0, will be removed with next major release. Use typescale variables instead. */
const fontSizeText = {
xxSmall: fontSizeTextXXSmall,
xSmall: fontSizeTextXSmall,
small: fontSizeTextSmall,
medium: fontSizeTextMedium,
large: fontSizeTextLarge,
xLarge: fontSizeTextXLarge,
};
export { fontSizeText };