flowbite-qwik
Version:
Official Qwik components built for Flowbite and Tailwind CSS
16 lines (15 loc) • 419 B
TypeScript
import { ClassList, PropsOf } from '@builder.io/qwik';
export type TableTheme = {
root?: ClassList;
body?: ClassList;
cell?: ClassList;
head?: ClassList;
headCell?: ClassList;
row?: ClassList;
};
export type TableProps = PropsOf<'table'> & {
striped?: boolean;
hoverable?: boolean;
theme?: TableTheme;
};
export declare const Table: import("@builder.io/qwik").Component<TableProps>;