UNPKG

naive-ui

Version:

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

25 lines (24 loc) 737 B
import { type PropType } from 'vue'; export interface TagColor { color?: string; borderColor?: string; textColor?: string; } declare const _default: { readonly color: PropType<TagColor>; readonly type: { readonly type: PropType<"default" | "error" | "primary" | "info" | "success" | "warning">; readonly default: "default"; }; readonly round: BooleanConstructor; readonly size: { readonly type: PropType<"small" | "medium" | "large" | "tiny">; readonly default: "medium"; }; readonly closable: BooleanConstructor; readonly disabled: { readonly type: PropType<boolean | undefined>; readonly default: undefined; }; }; export default _default;