735fac89619d1ca4003b4fd164f9a8705e2019e1aec8dd6987c251b45b92faa86cc9f0639d64d715d9a1a6f305eba3906d78302c831424f7ee75935ebd2599 482 B

123456789101112131415161718192021222324
  1. import { buildProps } from '../../../utils/vue/props/runtime.mjs';
  2. import { iconPropType } from '../../../utils/vue/icon.mjs';
  3. const stepProps = buildProps({
  4. title: {
  5. type: String,
  6. default: ""
  7. },
  8. icon: {
  9. type: iconPropType
  10. },
  11. description: {
  12. type: String,
  13. default: ""
  14. },
  15. status: {
  16. type: String,
  17. values: ["", "wait", "process", "finish", "error", "success"],
  18. default: ""
  19. }
  20. });
  21. export { stepProps };
  22. //# sourceMappingURL=item2.mjs.map