@aplus-frontend/ui
Version:
32 lines (31 loc) • 636 B
JavaScript
import { genComponentStyleHook as o } from "../../utils/cssinjs/index.mjs";
const t = (e) => {
const { componentCls: r } = e;
return {
[r]: {
[`${r}__resize-bar`]: {
width: "4px",
cursor: "ew-resize",
position: "absolute",
top: 0,
left: 0,
bottom: 0,
zIndex: 100,
backgroundColor: "transparent",
"&--min-disabled": {
cursor: "w-resize"
},
"&--max-disabled": {
cursor: "e-resize"
}
}
}
};
}, n = o(
"ApForm.DrawerForm",
(e) => [t(e)]
);
export {
n as default,
t as genDrawerFormStyle
};