text.mjs 537 B

1234567891011121314151617181920212223242526
  1. import { buildProps } from '../../../utils/vue/props/runtime.mjs';
  2. import { componentSizes } from '../../../constants/size.mjs';
  3. const textProps = buildProps({
  4. type: {
  5. type: String,
  6. values: ["primary", "success", "info", "warning", "danger", ""],
  7. default: ""
  8. },
  9. size: {
  10. type: String,
  11. values: componentSizes,
  12. default: ""
  13. },
  14. truncated: Boolean,
  15. lineClamp: {
  16. type: [String, Number]
  17. },
  18. tag: {
  19. type: String,
  20. default: "span"
  21. }
  22. });
  23. export { textProps };
  24. //# sourceMappingURL=text.mjs.map