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