UNPKG

@kbfront/kb-ui

Version:

KB React UI Library

10 lines (9 loc) 317 B
import { ReactNode, ReactNodeArray, FC, HTMLAttributes } from 'react'; interface IProps extends HTMLAttributes<HTMLElement> { children: ReactNode | ReactNodeArray; className?: string; onClick?(e: any): void; onDoubleClick?(e: any): void; } declare const TableRow: FC<IProps>; export default TableRow;