UNPKG

@hitachivantara/uikit-react-core

Version:
32 lines (31 loc) 767 B
import { theme } from "@hitachivantara/uikit-styles"; import { createClasses } from "@hitachivantara/uikit-react-utils"; //#region src/CheckBoxGroup/CheckBoxGroup.styles.tsx var { staticClasses, useClasses } = createClasses("HvCheckBoxGroup", { root: { display: "inline-block", overflow: "clip", overflowClipMargin: 4, verticalAlign: "top" }, label: {}, group: { display: "flex" }, vertical: { flexDirection: "column", "&>*": { zIndex: 0 }, "&>*:focus-within": { zIndex: 1 } }, horizontal: { flexDirection: "row", flexWrap: "wrap", gap: theme.space.sm }, invalid: { paddingBottom: theme.space.xs, borderBottom: `1px solid ${theme.form.errorColor}` }, selectAll: {}, error: {} }); //#endregion export { staticClasses, useClasses };