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.

17 lines (16 loc) 579 B
import { VuiTheme } from "../theme/types.js"; import "../theme/index.js"; import { ColorGetter } from "./colors.js"; import { SystemProp } from "@xstyled/system"; //#region src/system/backgrounds.d.ts type BackgroundColorProp = SystemProp<ColorGetter, VuiTheme>; type BackgroundColorProps = { activeBg?: BackgroundColorProp; bg?: BackgroundColorProp; disabledBg?: BackgroundColorProp; hoverBg?: BackgroundColorProp; }; type BackgroundsProps = BackgroundColorProps; //#endregion export { BackgroundColorProps, BackgroundsProps }; //# sourceMappingURL=backgrounds.d.ts.map