maz-ui
Version:
A standalone components library for Vue.Js 3 & Nuxt.Js 3
14 lines (13 loc) • 584 B
TypeScript
import type { Color } from './types';
export type { Color };
export interface Props {
/** The color of the component. */
color?: Color;
/** The height of the component. */
height?: string;
}
declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
color: Color;
height: string;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>;
export default _default;