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