@veracity/vui
Version:
Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.
17 lines (16 loc) • 503 B
TypeScript
import { VuiTheme } from "../theme/types.js";
import "../theme/index.js";
import { SystemProp } from "@xstyled/system";
//#region src/system/flexboxGrids.d.ts
type RowProp = SystemProp<boolean, VuiTheme>;
type RowProps = {
row?: RowProp;
};
type ColProp = SystemProp<true | 'auto' | string | number, VuiTheme>;
type ColProps = {
col?: ColProp;
};
type FlexboxGridsProps = RowProps & ColProps;
//#endregion
export { ColProps, FlexboxGridsProps, RowProps };
//# sourceMappingURL=flexboxGrids.d.ts.map