@hitachivantara/uikit-react-lab
Version:
Contributed React components to UI Kit by the community.
16 lines (15 loc) • 449 B
JavaScript
import { createClasses, theme } from "@hitachivantara/uikit-react-core";
//#region src/StepNavigation/SimpleNavigation/Dot/Dot.styles.tsx
var { staticClasses, useClasses } = createClasses("HvDot", {
root: {
borderRadius: theme.radii.full,
zIndex: 1,
width: "var(--dotSize)",
height: "var(--dotSize)",
"&,:hover,:disabled": { backgroundColor: "var(--dotColor)" }
},
active: {},
ghostDisabled: {}
});
//#endregion
export { useClasses };