comic-plus
Version:
<p align="center"> <img width="200px" src="./logo.png"/> </p>
27 lines (26 loc) • 396 B
JavaScript
const POSITION_ENUM = {
center: "center",
left: "flex-start",
right: "flex-end"
};
const dividerProps = {
direction: {
type: String,
default: "horizontal"
},
type: String,
color: String,
lineWeight: {
type: Number,
default: 1
},
contentPosition: {
type: String,
default: "center"
},
lineStyle: String
};
export {
POSITION_ENUM,
dividerProps
};