element-plus
Version:
A Component Library for Vue 3
22 lines (19 loc) • 472 B
JavaScript
import { buildProps, definePropType } from '../../../utils/vue/props/runtime.mjs';
const dividerProps = buildProps({
direction: {
type: String,
values: ["horizontal", "vertical"],
default: "horizontal"
},
contentPosition: {
type: String,
values: ["left", "center", "right"],
default: "center"
},
borderStyle: {
type: definePropType(String),
default: "solid"
}
});
export { dividerProps };
//# sourceMappingURL=divider.mjs.map