ether-admin/node_modules/ant-design-vue/es/flex/interface.js

11 lines
331 B
JavaScript

import { anyType, booleanType, someType, stringType } from '../_util/type';
export const flexProps = () => ({
prefixCls: stringType(),
vertical: booleanType(),
wrap: stringType(),
justify: stringType(),
align: stringType(),
flex: someType([Number, String]),
gap: someType([Number, String]),
component: anyType()
});