You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
571 B

3 months ago
  1. import { buildProps } from '../../../utils/vue/props/runtime.mjs';
  2. const RowJustify = [
  3. "start",
  4. "center",
  5. "end",
  6. "space-around",
  7. "space-between",
  8. "space-evenly"
  9. ];
  10. const RowAlign = ["top", "middle", "bottom"];
  11. const rowProps = buildProps({
  12. tag: {
  13. type: String,
  14. default: "div"
  15. },
  16. gutter: {
  17. type: Number,
  18. default: 0
  19. },
  20. justify: {
  21. type: String,
  22. values: RowJustify,
  23. default: "start"
  24. },
  25. align: {
  26. type: String,
  27. values: RowAlign
  28. }
  29. });
  30. export { RowAlign, RowJustify, rowProps };
  31. //# sourceMappingURL=row.mjs.map