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.

50 lines (49 loc) 816 B
//#region src/icon/theme.ts const baseStyle = {}; const defaultProps = { size: "md" }; const sizes = { xxs: { height: 12, width: 12 }, xs: { height: 16, width: 16 }, sm: { height: 20, width: 20 }, md: { height: 24, width: 24 }, lg: { height: 28, width: 28 }, /** the xl size is introduced for the xxl-tabs and xl-avatars; should not be listed. */ xl: { height: 32, width: 32 }, /** the xxl size is introduced for the xxl-avatars; should not be listed. */ xxl: { height: 40, width: 40 } }; const variants = { static: {}, spinning: { animation: "vui-spin 0.6s linear infinite" } }; var theme_default = { baseStyle, defaultProps, sizes, variants }; //#endregion export { theme_default as default }; globalThis.__vuiVersion__ = "5.3.1" //# sourceMappingURL=theme.js.map