interface.js 331 B

1234567891011
  1. import { anyType, booleanType, someType, stringType } from '../_util/type';
  2. export const flexProps = () => ({
  3. prefixCls: stringType(),
  4. vertical: booleanType(),
  5. wrap: stringType(),
  6. justify: stringType(),
  7. align: stringType(),
  8. flex: someType([Number, String]),
  9. gap: someType([Number, String]),
  10. component: anyType()
  11. });