UNPKG

@trussworks/react-uswds

Version:
16 lines (15 loc) 542 B
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;