UNPKG

naive-ui

Version:

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

23 lines (22 loc) 686 B
import type { PropType } from 'vue'; import type { TagSize } from './public-types'; export interface TagColor { color?: string; borderColor?: string; textColor?: string; } declare const _default: { readonly color: PropType<TagColor>; readonly type: { readonly type: PropType<"default" | "primary" | "success" | "info" | "warning" | "error">; readonly default: "default"; }; readonly round: BooleanConstructor; readonly size: PropType<TagSize>; readonly closable: BooleanConstructor; readonly disabled: { readonly type: PropType<boolean | undefined>; readonly default: undefined; }; }; export default _default;