UNPKG

@arco-design/web-react

Version:

Arco Design React UI Library.

8 lines (7 loc) 289 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;