naive-ui
Version:
A Vue 3 Component Library. Fairly Complete, Theme Customizable, Uses TypeScript, Fast
20 lines • 421 B
JavaScript
import { commonLight } from "../../styles.mjs";
function self(vars) {
const {
popoverColor,
dividerColor,
borderRadius
} = vars;
return {
color: popoverColor,
buttonBorderColor: dividerColor,
borderRadiusSquare: borderRadius,
boxShadow: '0 2px 8px 0px rgba(0, 0, 0, .12)'
};
}
const themeLight = {
name: 'FloatButtonGroup',
common: commonLight,
self
};
export default themeLight;