@intility/bifrost-react-select
Version:
React select component for Intility's design system, Bifrost.
15 lines (14 loc) • 473 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { Icon } from "@intility/bifrost-react";
import { components } from "react-select";
import { faXmark } from "@fortawesome/free-solid-svg-icons/faXmark";
const ClearIndicator = (props)=>{
return /*#__PURE__*/ _jsx(components.ClearIndicator, {
...props,
children: /*#__PURE__*/ _jsx(Icon, {
widthAuto: true,
icon: faXmark
})
});
};
export default ClearIndicator;