UNPKG

@grafana/ui

Version:
13 lines (10 loc) 507 B
import { jsx } from 'react/jsx-runtime'; import { components } from 'react-select'; import { Icon } from '../../../Icon/Icon.mjs'; "use strict"; const IndicatorsContainer = (props) => { const isOpen = props.selectProps.menuIsOpen; return /* @__PURE__ */ jsx(components.IndicatorsContainer, { ...props, children: /* @__PURE__ */ jsx(Icon, { name: isOpen ? "angle-up" : "angle-down", style: { marginTop: "7px" } }) }); }; export { IndicatorsContainer }; //# sourceMappingURL=IndicatorsContainer.mjs.map