UNPKG

@open-condo/ui

Version:

A set of React UI components for developing applications inside the condo ecosystem

11 lines 554 B
import React, { CSSProperties } from 'react'; import type { SpaceProps as DefaultSpaceProps } from 'antd'; export declare const SpaceSize: [0, 4, 8, 12, 16, 20, 24, 40, 52, 60]; export type SpaceProps = { width?: CSSProperties['width']; height?: CSSProperties['height']; size: typeof SpaceSize[number] | [typeof SpaceSize[number], typeof SpaceSize[number]]; } & Pick<DefaultSpaceProps, 'direction' | 'align' | 'wrap' | 'children' | 'className'>; declare const Space: React.FC<SpaceProps>; export { Space }; //# sourceMappingURL=space.d.ts.map