fomantic-ui-react
Version:
Fomantic-UI React -- A React Component Library.
32 lines (31 loc) • 1.58 kB
TypeScript
/// <reference types="react" />
import { TableProps } from './type';
declare const Table: {
({ as, celled, padded, className, children, ...props }: TableProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
displayName: string;
Header: {
({ as, className, children, ...props }: import("./type").TableHeaderProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
displayName: string;
};
HeaderCell: {
({ as, className, children, ...props }: import("./type").TableHeaderCellProps): JSX.Element;
displayName: string;
};
Row: {
({ as, className, children, ...props }: import("./type").TableRowProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
displayName: string;
};
Cell: {
({ as, singleLine, textAlign, className, children, ...props }: import("./type").TableCellProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
displayName: string;
};
Body: {
({ as, className, children, ...props }: import("./type").TableBodyProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
displayName: string;
};
Footer: {
({ as, className, children, ...props }: import("./type").TableFooterProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
displayName: string;
};
};
export default Table;