@hitachivantara/uikit-react-lab
Version:
Contributed React components for the NEXT UI Kit.
19 lines (18 loc) • 416 B
JavaScript
import { createClasses, theme } from "@hitachivantara/uikit-react-core";
const { staticClasses, useClasses } = createClasses("HvDot", {
root: {
borderRadius: theme.radii.full,
zIndex: 1,
width: "var(--dotSize)",
height: "var(--dotSize)",
"&,:hover,:disabled": {
backgroundColor: "var(--dotColor)"
}
},
active: {},
ghostDisabled: {}
});
export {
staticClasses,
useClasses
};