17 lines
508 B
TypeScript
17 lines
508 B
TypeScript
import * as React from 'react';
|
|
import { StandardProps } from '..';
|
|
|
|
export interface TableRowProps extends StandardProps<TableRowBaseProps, TableRowClassKey> {
|
|
component?: React.ReactType<TableRowBaseProps>;
|
|
hover?: boolean;
|
|
selected?: boolean;
|
|
}
|
|
|
|
export type TableRowBaseProps = React.HTMLAttributes<HTMLTableRowElement>;
|
|
|
|
export type TableRowClassKey = 'root' | 'typeHead' | 'typeFooter' | 'hover' | 'selected';
|
|
|
|
declare const TableRow: React.ComponentType<TableRowProps>;
|
|
|
|
export default TableRow;
|