@coko/client
Version:
Client side common code for coko apps
22 lines (21 loc) • 558 B
JavaScript
import "react";
import e from "styled-components";
import { jsx as t, jsxs as n } from "react/jsx-runtime";
import { Col as r, Row as i } from "antd";
//#region src/ui/common/Split.tsx
var a = e(i)``, o = e(r)``, s = e(r)``, c = (e) => {
let { className: r, children: i, gutter: c = 0, splitAt: l = 12 } = e, [u, d] = i;
return /* @__PURE__ */ n(a, {
className: r,
gutter: c,
children: [/* @__PURE__ */ t(o, {
span: l,
children: u
}), /* @__PURE__ */ t(s, {
span: 24 - l,
children: d
})]
});
};
//#endregion
export { c as default };