UNPKG

naive-ui

Version:

A Vue 3 Component Library. Fairly Complete, Theme Customizable, Uses TypeScript, Fast

22 lines 527 B
import { createTheme } from "../../_mixins/index.mjs"; import { commonLight } from "../../_styles/common/index.mjs"; import { inputLight } from "../../input/styles/index.mjs"; export function self() { return { inputWidthSmall: '24px', inputWidthMedium: '30px', inputWidthLarge: '36px', gapSmall: '8px', gapMedium: '8px', gapLarge: '8px' }; } const inputOtpLight = createTheme({ name: 'InputOtp', common: commonLight, peers: { Input: inputLight }, self }); export default inputOtpLight;