UNPKG

kodama-ui

Version:

Kodama UI is a Vue 3 component library that provides a set of components & funcionality to build your application.

37 lines (36 loc) 882 B
import { ExtractPropTypes } from 'vue'; export declare const colors: string[]; declare const Props: { id: { type: StringConstructor; default: () => string; description: string; }; size: { type: StringConstructor; control: { type: string; }; options: string[]; validator: (val: string) => boolean; default: string; description: string; }; color: { type: StringConstructor; control: { type: string; }; options: string[]; validator: (val: string) => boolean; default: string; description: string; }; neon: { type: BooleanConstructor; default: boolean; description: string; }; }; export type KBadgeProps = Readonly<ExtractPropTypes<typeof Props>>; export default Props;