element-plus
Version:
A Component Library for Vue 3
46 lines (43 loc) • 770 B
JavaScript
import '../../../utils/index2.mjs';
import { buildProps } from '../../../utils/vue/props2.mjs';
import { iconPropType } from '../../../utils/vue/icon2.mjs';
const timelineItemProps = buildProps({
timestamp: {
type: String,
default: ""
},
hideTimestamp: {
type: Boolean,
default: false
},
center: {
type: Boolean,
default: false
},
placement: {
type: String,
default: "bottom"
},
type: {
type: String,
default: ""
},
color: {
type: String,
default: ""
},
size: {
type: String,
default: "normal"
},
icon: {
type: iconPropType,
default: ""
},
hollow: {
type: Boolean,
default: false
}
});
export { timelineItemProps };
//# sourceMappingURL=timeline-item3.mjs.map