@hitachivantara/uikit-react-core
Version:
UI Kit Core React components.
26 lines (25 loc) • 658 B
JavaScript
import { theme } from "@hitachivantara/uikit-styles";
import { createClasses } from "@hitachivantara/uikit-react-utils";
//#region src/Dropdown/List/List.styles.tsx
var { staticClasses, useClasses } = createClasses("HvDropdownList", {
rootList: {},
dropdownListContainer: {
overflow: "auto",
padding: 4,
margin: -4,
maxWidth: "var(--maxW)",
maxHeight: "var(--maxH)"
},
virtualized: {
maxWidth: "inherit",
maxHeight: "inherit",
overflow: "inherit",
padding: 0
},
searchContainer: { marginBottom: theme.space.xs },
listBorderDown: {},
listContainer: { padding: theme.space.sm },
selectAll: {}
});
//#endregion
export { useClasses };