@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) • 733 B
JavaScript
import { spacingFluidLarge } from './spacingFluidLarge.mjs';
import { spacingFluidMedium } from './spacingFluidMedium.mjs';
import { spacingFluidSmall } from './spacingFluidSmall.mjs';
import { spacingFluidXLarge } from './spacingFluidXLarge.mjs';
import { spacingFluidXSmall } from './spacingFluidXSmall.mjs';
import { spacingFluidXXLarge } from './spacingFluidXXLarge.mjs';
/** @deprecated since v4.0.0, will be removed with next major release. Use spacing variables directly instead. */
const spacingFluid = {
xSmall: spacingFluidXSmall,
small: spacingFluidSmall,
medium: spacingFluidMedium,
large: spacingFluidLarge,
xLarge: spacingFluidXLarge,
xxLarge: spacingFluidXXLarge,
};
export { spacingFluid };