mfg-ui-components
Version:
React UI library with reusable components
18 lines (17 loc) • 625 B
TypeScript
export interface Props {
tableHeader: any;
tableData: any;
bordered?: boolean;
striped?: boolean;
hoverable?: boolean;
isDark?: boolean;
filterVisible?: boolean;
orderByVisible?: boolean;
sortVisible?: boolean;
customClass?: string;
customId?: string;
tableCaption?: string;
}
export declare const capitalize: (str: string) => string;
declare const Table: ({ tableHeader, tableData, bordered, striped, hoverable, isDark, filterVisible, orderByVisible, sortVisible, customClass, customId, tableCaption }: Props) => import("react/jsx-runtime").JSX.Element;
export default Table;