grommet
Version:
focus on the essential experience
17 lines (11 loc) • 390 B
TypeScript
import * as React from 'react';
export interface TableFooterProps {}
type htmlTableFooterProps = React.DetailedHTMLProps<
React.HTMLAttributes<HTMLTableSectionElement>,
HTMLTableSectionElement
>;
export interface TableFooterExtendedProps
extends TableFooterProps,
htmlTableFooterProps {}
declare const TableFooter: React.FC<TableFooterExtendedProps>;
export { TableFooter };