UNPKG

antd-hz

Version:

华卓科技基于 antd 5.0 定制的组件库

14 lines (13 loc) 358 B
import * as React from 'react'; import type { InternalDescriptionsItemType } from '.'; export interface RowProps { prefixCls: string; vertical: boolean; row: InternalDescriptionsItemType[]; bordered?: boolean; colon: boolean; index: number; children?: React.ReactNode; } declare const Row: React.FC<RowProps>; export default Row;