grommet
Version:
focus on the essential experience
17 lines (11 loc) • 358 B
TypeScript
import * as React from 'react';
export interface TableRowProps {}
type htmlTableRowProps = React.DetailedHTMLProps<
React.HTMLAttributes<HTMLTableRowElement>,
HTMLTableRowElement
>;
export interface TableRowExtendedProps
extends TableRowProps,
htmlTableRowProps {}
declare const TableRow: React.FC<TableRowExtendedProps>;
export { TableRow };