@trussworks/react-uswds
Version:
React USWDS 3 component library
16 lines (15 loc) • 542 B
TypeScript
import { default as React, JSX } from 'react';
export type TableProps = {
bordered?: boolean;
caption?: React.ReactNode;
children: React.ReactNode;
className?: string;
fullWidth?: boolean;
fixed?: boolean;
scrollable?: boolean;
striped?: boolean;
compact?: boolean;
stackedStyle?: 'none' | 'default' | 'headers';
};
export declare const Table: ({ bordered, caption, children, className, fullWidth, fixed, scrollable, striped, compact, stackedStyle, }: TableProps) => JSX.Element;
export default Table;