ant-design-vue/types/space.d.ts
2020-08-22 10:21:34 +08:00

12 lines
393 B
TypeScript

import { AntdComponent } from './component';
export type SizeType = 'small' | 'middle' | 'large' | undefined;
export declare class Space extends AntdComponent {
$props: {
prefixCls?: string;
size?: SizeType | number;
direction?: 'horizontal' | 'vertical';
// No `stretch` since many components do not support that.
align?: 'start' | 'end' | 'center' | 'baseline';
};
}