@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.63 kB
JavaScript
import React, { forwardRef, memo } from "react";
import { AccessibleIcon } from "../accessible-icon";
import { StyledSvg, StyledPath } from "../styles";
import { jsx as _jsx } from "react/jsx-runtime";
const StyledSearchMinusRegular = ({
label,
color = "#000000",
className = "",
css = {},
viewBox = "0 0 24 24"
}, ref) => {
return /*#__PURE__*/_jsx(AccessibleIcon, {
label: label,
children: /*#__PURE__*/_jsx(StyledSvg, {
className: className,
css: css,
viewBox: viewBox,
xmlns: "http://www.w3.org/2000/svg",
xmlnsXlink: "http://www.w3.org/1999/xlink",
ref: ref,
children: /*#__PURE__*/_jsx(StyledPath, {
css: {
fill: `${color}`
},
d: "M23.6297 22.0781L17.3484 15.7969C18.7078 14.1328 19.5 12.0375 19.5 9.75C19.5 4.36547 15.1359 0 9.75 0C4.36406 0 0 4.36547 0 9.75C0 15.1345 4.36547 19.5 9.75 19.5C12.037 19.5 14.1352 18.7073 15.7969 17.3888L22.0781 23.67C22.2984 23.8922 22.5891 24 22.875 24C23.1609 24 23.4506 23.8901 23.6705 23.6704C24.1078 23.2312 24.1078 22.5187 23.6297 22.0781ZM9.75 17.25C5.61469 17.25 2.25 13.8853 2.25 9.75C2.25 5.61469 5.61469 2.25 9.75 2.25C13.8853 2.25 17.25 5.61469 17.25 9.75C17.25 13.8853 13.8844 17.25 9.75 17.25ZM13.5 8.625H5.95781C5.37656 8.625 4.875 9.12656 4.875 9.75C4.875 10.3734 5.37797 10.875 5.95781 10.875H13.4578C14.1234 10.875 14.625 10.3734 14.625 9.75C14.625 9.12656 14.1234 8.625 13.5 8.625Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledSearchMinusRegular);
const SearchMinusRegular = /*#__PURE__*/memo(ForwardRef);
export default SearchMinusRegular;