ideaz-element
Version:
<p align="center"> <a href="" target="_blank" rel="noopener noreferrer"> <img src="./docs/public/logo.svg" alt="Ideaz Element" width="180" style="width: 180px;" /> </a> </p>
34 lines (33 loc) • 482 B
JavaScript
const t = [
"start",
"center",
"end",
"space-around",
"space-between",
"space-evenly"
], e = ["top", "middle", "bottom"], a = {
tag: {
type: String,
default: "div"
},
gutter: {
type: Number,
default: 0
},
justify: {
type: String,
values: t,
default: "start"
},
align: {
type: String,
values: e,
default: "top"
}
};
export {
e as RowAlign,
t as RowJustify,
a as rowProps
};
//# sourceMappingURL=props.mjs.map