Row.d.ts 358 B

12345678910111213
  1. import * as React from 'react';
  2. import type { InternalDescriptionsItemType } from '.';
  3. export interface RowProps {
  4. prefixCls: string;
  5. vertical: boolean;
  6. row: InternalDescriptionsItemType[];
  7. bordered?: boolean;
  8. colon: boolean;
  9. index: number;
  10. children?: React.ReactNode;
  11. }
  12. declare const Row: React.FC<RowProps>;
  13. export default Row;