@hitachivantara/uikit-react-core
Version:
UI Kit Core React components.
25 lines (24 loc) • 802 B
JavaScript
import { theme } from "@hitachivantara/uikit-styles";
import { createClasses } from "@hitachivantara/uikit-react-utils";
//#region src/VerticalNavigation/NavigationSlider/NavigationSlider.styles.tsx
var { staticClasses, useClasses } = createClasses("HvVerticalNavigationSlider", {
root: {
display: "flex",
alignItems: "center",
borderLeft: `4px solid transparent`,
minHeight: "48px",
color: "inherit",
marginBottom: "8px",
"& > button": { marginLeft: "auto" }
},
listItemSelected: {
backgroundColor: theme.colors.bgPageSecondary,
borderLeft: `4px solid ${theme.colors.text}`
},
listItemFocus: { backgroundColor: theme.colors.bgPageSecondary },
forwardButton: { color: "inherit" },
listContainer: {},
listItemDisabled: {}
});
//#endregion
export { staticClasses, useClasses };