27 lines
538 B
JavaScript
27 lines
538 B
JavaScript
import { buildProps } from '../../../utils/vue/props/runtime.mjs';
|
|
import { componentSizes } from '../../../constants/size.mjs';
|
|
|
|
const textProps = buildProps({
|
|
type: {
|
|
type: String,
|
|
values: ["primary", "success", "info", "warning", "danger", ""],
|
|
default: ""
|
|
},
|
|
size: {
|
|
type: String,
|
|
values: componentSizes,
|
|
default: ""
|
|
},
|
|
truncated: Boolean,
|
|
lineClamp: {
|
|
type: [String, Number]
|
|
},
|
|
tag: {
|
|
type: String,
|
|
default: "span"
|
|
}
|
|
});
|
|
|
|
export { textProps };
|
|
//# sourceMappingURL=text2.mjs.map
|