@veracity/vui
Version:
Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.
18 lines (17 loc) • 659 B
TypeScript
import { Property } from "../node_modules/csstype/index.js";
import { VuiTheme } from "../theme/types.js";
import "../theme/index.js";
import { SystemProp } from "@xstyled/system";
//#region src/system/tables.d.ts
type BorderCollapseProp = SystemProp<Property.BorderCollapse, VuiTheme>;
type BorderCollapseProps = {
borderCollapse?: BorderCollapseProp;
};
type TableLayoutProp = SystemProp<Property.TableLayout, VuiTheme>;
type TableLayoutProps = {
tableLayout?: TableLayoutProp;
};
type TablesProps = BorderCollapseProps & TableLayoutProps;
//#endregion
export { BorderCollapseProps, TableLayoutProps, TablesProps };
//# sourceMappingURL=tables.d.ts.map