UNPKG

@hitachivantara/uikit-react-core

Version:

Core React components for the NEXT Design System.

27 lines (26 loc) 649 B
import { createClasses } from "@hitachivantara/uikit-react-utils"; import { theme } from "@hitachivantara/uikit-styles"; const { 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: {} }); export { staticClasses, useClasses };