@inkline/inkline
Version:
Inkline is the intuitive UI Components library that gives you a developer-friendly foundation for building high-quality, accessible, and customizable Vue.js 3 Design Systems.
71 lines (70 loc) • 1.73 kB
TypeScript
declare const _default: import("vue").DefineComponent<{
/**
* The color variant of the card
* @type primary | success | light | dark | info | success | warning | danger
* @default
* @name color
*/
color: {
type: StringConstructor;
default: undefined;
};
/**
* The size variant of the card
* @type sm | md | lg
* @default
* @name size
*/
size: {
type: StringConstructor;
default: undefined;
};
/**
* The HTML tag to use for the card root element
* @default div
* @name tag
*/
tag: {
type: StringConstructor;
default: string;
};
}, {
classes: import("vue").ComputedRef<{
[x: string]: boolean;
}>;
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
/**
* The color variant of the card
* @type primary | success | light | dark | info | success | warning | danger
* @default
* @name color
*/
color: {
type: StringConstructor;
default: undefined;
};
/**
* The size variant of the card
* @type sm | md | lg
* @default
* @name size
*/
size: {
type: StringConstructor;
default: undefined;
};
/**
* The HTML tag to use for the card root element
* @default div
* @name tag
*/
tag: {
type: StringConstructor;
default: string;
};
}>>, {
color: string;
size: string;
tag: string;
}, {}>;
export default _default;