UNPKG

grommet

Version:

focus on the essential experience

14 lines (8 loc) 292 B
import * as React from 'react'; export interface TableRowProps {} type htmlTableRowProps = JSX.IntrinsicElements['tr']; export interface TableRowExtendedProps extends TableRowProps, htmlTableRowProps {} declare const TableRow: React.FC<TableRowExtendedProps>; export { TableRow };