UNPKG

@veracity/vui

Version:

Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.

23 lines (22 loc) 1.32 kB
import { AnimationsProps } from "./animations.js"; import { BackgroundColorProps } from "./backgrounds.js"; import { BordersProps } from "./borders.js"; import { IsTruncatedProps, MaxLinesProps, WordBreakProps } from "./custom.js"; import { EffectsProps } from "./effects.js"; import { LayoutProps } from "./layout.js"; import { FlexboxesProps } from "./flexboxes.js"; import { InteractivityProps } from "./interactivity.js"; import { SizingProps } from "./sizing.js"; import { SpaceProps } from "./space.js"; import { FlexboxGridsProps } from "./flexboxGrids.js"; import { GridsProps } from "./grids.js"; import { TablesProps } from "./tables.js"; import { TransformsProps } from "./transforms.js"; import { TransitionsProps } from "./transitions.js"; import { TypographyProps } from "./typography.js"; //#region src/system/system.d.ts type SystemProps = AnimationsProps & BackgroundColorProps & BordersProps & EffectsProps & FlexboxesProps & FlexboxGridsProps & GridsProps & InteractivityProps & IsTruncatedProps & LayoutProps & MaxLinesProps & SizingProps & SpaceProps & TablesProps & TransformsProps & TransitionsProps & TypographyProps & WordBreakProps; declare const system: import("@xstyled/system").StyleGenerator; //#endregion export { SystemProps, system as default, system }; //# sourceMappingURL=system.d.ts.map