@vuesax-alpha/nightly
Version:
A Component Library for Vue 3
43 lines (40 loc) • 755 B
JavaScript
import '../../../utils/index.mjs';
import { buildProps } from '../../../utils/vue/props/runtime.mjs';
const RowJustify = [
"start",
"center",
"end",
"space-around",
"space-between",
"space-evenly"
];
const RowAlign = ["top", "middle", "bottom"];
const RowDerection = [
"row",
"row-reverse",
"column",
"column-reverse"
];
const rowProps = buildProps({
gutter: {
type: Number,
default: 0
},
justify: {
type: String,
values: RowJustify,
default: "start"
},
direction: {
type: String,
values: RowDerection,
default: "row"
},
align: {
type: String,
values: RowAlign,
default: "top"
}
});
export { RowAlign, RowDerection, RowJustify, rowProps };
//# sourceMappingURL=row.mjs.map