@intility/bifrost-react-select
Version:
React select component for Intility's design system, Bifrost.
12 lines (11 loc) • 358 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { components } from "react-select";
const CustomMenuList = (props)=>{
return /*#__PURE__*/ _jsx(components.MenuList, {
"data-testid": "bf-select-menulist",
className: "bf-scrollbar-small",
...props,
children: props.children
});
};
export default CustomMenuList;