dk-plus
Version:
22 lines (21 loc) • 543 B
JavaScript
import { toRaw as i } from "vue";
import { getStyleList as l } from "../public/get-StyleList/index.js";
import { setSize as c } from "../public/set-size/index.js";
import "../../_icon/index.js";
const p = (s) => {
const t = { ...i(s) }, { classes: o } = l(t, "row");
return {
classList: o([], "dk-row"),
styleList: (() => {
const { gutter: r, justify: e } = t;
return {
"--row-width": "100%",
"--row-gutter": c(r || "0px"),
"--row-justify": e
};
})()
};
};
export {
p as getRow
};