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.
30 lines (29 loc) • 1.11 kB
TypeScript
/**
* Props for the TableData component.
* @prop {string} width - The width of the table data. Default is ''.
* @prop {boolean} borderless - The borderless state of the table data. Default is false.
*/
interface TableDataProps {
width?: string;
borderless?: boolean;
}
declare function __VLS_template(): {
attrs: Partial<{}>;
slots: {
default?(_: {}): any;
};
refs: {};
rootEl: HTMLTableCellElement;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: import("vue").DefineComponent<TableDataProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<TableDataProps> & Readonly<{}>, {
width: string;
borderless: boolean;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLTableCellElement>;
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
new (): {
$slots: S;
};
};