UNPKG

@bee-design/ui

Version:

Bee Design React UI Library.

8 lines (7 loc) 296 B
import { ReactNode, HTMLAttributes } from 'react'; import { Omit } from '../../_util/type'; interface SummaryRowProps extends Omit<HTMLAttributes<HTMLTableRowElement>, 'children'> { children?: ReactNode; } declare function Row(props: SummaryRowProps): JSX.Element; export default Row;