UNPKG

@hitachivantara/uikit-react-core

Version:

Core React components for the NEXT Design System.

34 lines (33 loc) 712 B
import { createClasses } from "@hitachivantara/uikit-react-utils"; import { theme } from "@hitachivantara/uikit-styles"; import { outlineStyles } from "../utils/focusUtils.js"; const { staticClasses, useClasses } = createClasses("HvBaseRadio", { root: { padding: 0, width: 32, minWidth: 32, height: 32, cursor: "pointer", borderRadius: "inherit", ":hover": { backgroundColor: theme.colors.bgHover } }, disabled: { cursor: "not-allowed", pointerEvents: "initial" }, focusVisible: { "& svg": { borderRadius: theme.radii.full, ...outlineStyles } }, icon: {}, checked: {}, semantic: {} }); export { staticClasses, useClasses };