UNPKG

yozora-vue

Version:

Build beautiful, scalable UIs effortlessly with Yozora, a Vue 3 and Tailwind CSS component library focused on flexibility, responsiveness, and ease of customization. Perfect for developers seeking fast, maintainable, and utility-first design integration.

36 lines (35 loc) 1.18 kB
/** * Props for the Modal component. * @prop {boolean} isShow - If true, the modal will be open. Default is false. * @prop {string} size - The size of the modal. Default is 'md'. */ interface ModalProps { isShow?: boolean; size?: string; } declare function __VLS_template(): { attrs: Partial<{}>; slots: { header?(_: {}): any; body?(_: {}): any; footer?(_: {}): any; }; refs: {}; rootEl: any; }; type __VLS_TemplateResult = ReturnType<typeof __VLS_template>; declare const __VLS_component: import("vue").DefineComponent<ModalProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { close: (...args: any[]) => void; }, string, import("vue").PublicProps, Readonly<ModalProps> & Readonly<{ onClose?: ((...args: any[]) => any) | undefined; }>, { size: string; isShow: boolean; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>; export default _default; type __VLS_WithTemplateSlots<T, S> = T & { new (): { $slots: S; }; };