naive-ui
Version:
A Vue 3 Component Library. Fairly Complete, Theme Customizable, Uses TypeScript, Fast
22 lines • 637 B
JavaScript
import { tagLight } from "../../tag/styles/index.mjs";
import { inputLight } from "../../input/styles/index.mjs";
import { buttonLight } from "../../button/styles/index.mjs";
import { spaceLight } from "../../space/styles/index.mjs";
import { commonLight } from "../../_styles/common/index.mjs";
import { createTheme } from "../../_mixins/index.mjs";
const dynamicTagsLight = createTheme({
name: 'DynamicTags',
common: commonLight,
peers: {
Input: inputLight,
Button: buttonLight,
Tag: tagLight,
Space: spaceLight
},
self() {
return {
inputWidth: '64px'
};
}
});
export default dynamicTagsLight;