mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-02 03:58:05 +08:00
12 lines
416 B
TypeScript
12 lines
416 B
TypeScript
import { AntdComponent, AntdProps } from './component';
|
|
export type SizeType = 'small' | 'middle' | 'large' | undefined;
|
|
export declare class Space extends AntdComponent {
|
|
$props: AntdProps & {
|
|
prefixCls?: string;
|
|
size?: SizeType | number;
|
|
direction?: 'horizontal' | 'vertical';
|
|
// No `stretch` since many components do not support that.
|
|
align?: 'start' | 'end' | 'center' | 'baseline';
|
|
};
|
|
}
|