UNPKG

@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) 753 B
import { spacingStaticLarge } from './spacingStaticLarge.mjs'; import { spacingStaticMedium } from './spacingStaticMedium.mjs'; import { spacingStaticSmall } from './spacingStaticSmall.mjs'; import { spacingStaticXLarge } from './spacingStaticXLarge.mjs'; import { spacingStaticXSmall } from './spacingStaticXSmall.mjs'; import { spacingStaticXXLarge } from './spacingStaticXXLarge.mjs'; /** @deprecated since v4.0.0, will be removed with next major release. Use spacing variables directly instead. */ const spacingStatic = { xSmall: spacingStaticXSmall, small: spacingStaticSmall, medium: spacingStaticMedium, large: spacingStaticLarge, xLarge: spacingStaticXLarge, xxLarge: spacingStaticXXLarge, }; export { spacingStatic };