UNPKG

@kbfront/kb-ui

Version:

KB React UI Library

11 lines (10 loc) 322 B
import { ReactNode, ReactNodeArray, FC, HTMLAttributes } from "react"; interface IProps extends HTMLAttributes<HTMLElement> { children: ReactNode | ReactNodeArray; flex?: number; className?: string; onClick?(e: any): void; title?: string; } declare const TableCol: FC<IProps>; export default TableCol;