UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

13 lines (12 loc) 395 B
import * as React from 'react'; import { SizeType } from '../config-provider/SizeContext'; export interface SpaceProps { prefixCls?: string; className?: string; style?: React.CSSProperties; size?: SizeType | number; direction?: 'horizontal' | 'vertical'; align?: 'start' | 'end' | 'center' | 'baseline'; } declare const Space: React.FC<SpaceProps>; export default Space;