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.

38 lines (37 loc) 1.19 kB
//#region src/button/consts.ts const loadingIconProps = { animation: "vui-spin 0.6s linear infinite", name: "uiSpinnerThird", pathFill: ["currentColor", "transparent"] }; const CSS_VAR_MAPPINGS = { base: { bg: "--vui-button-bg", borderColor: "--vui-button-border-color", color: "--vui-button-color", hoverBg: "--vui-button-hover-bg", hoverBorderColor: "--vui-button-hover-border-color", hoverColor: "--vui-button-hover-color", activeBg: "--vui-button-active-bg", activeBorderColor: "--vui-button-active-border-color", activeColor: "--vui-button-active-color" }, active: { bg: "--vui-button-active-bg", borderColor: "--vui-button-active-border-color", color: "--vui-button-active-color", hoverBg: "--vui-button-active-hover-bg", hoverBorderColor: "--vui-button-active-hover-border-color", hoverColor: "--vui-button-active-hover-color" }, disabled: { bg: "--vui-button-disabled-bg", borderColor: "--vui-button-disabled-border-color", color: "--vui-button-disabled-color", opacity: "--vui-button-disabled-opacity" } }; //#endregion export { CSS_VAR_MAPPINGS, loadingIconProps }; globalThis.__vuiVersion__ = "5.3.1" //# sourceMappingURL=consts.js.map