2020-08-31 06:59:56 +00:00
|
|
|
import { AntdComponent, AntdProps } from './component';
|
2020-08-22 02:21:34 +00:00
|
|
|
export type SizeType = 'small' | 'middle' | 'large' | undefined;
|
|
|
|
export declare class Space extends AntdComponent {
|
2020-08-31 06:59:56 +00:00
|
|
|
$props: AntdProps & {
|
2020-08-22 02:21:34 +00:00
|
|
|
prefixCls?: string;
|
|
|
|
size?: SizeType | number;
|
|
|
|
direction?: 'horizontal' | 'vertical';
|
|
|
|
// No `stretch` since many components do not support that.
|
|
|
|
align?: 'start' | 'end' | 'center' | 'baseline';
|
|
|
|
};
|
|
|
|
}
|