@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.44 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 StyledSearchRegular = ({
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.3485 15.7969C18.7078 14.1328 19.4578 12.0375 19.4578 9.75C19.4578 4.36406 15.0924 0 9.70783 0C4.32329 0 0 4.36547 0 9.75C0 15.1345 4.36501 19.5 9.70783 19.5C11.9949 19.5 14.093 18.7073 15.7547 17.3888L22.036 23.67C22.2985 23.8922 22.5891 24 22.875 24C23.161 24 23.4506 23.8901 23.6705 23.6704C24.1078 23.2312 24.1078 22.5187 23.6297 22.0781ZM2.25001 9.75C2.25001 5.61469 5.6147 2.25 9.75001 2.25C13.8853 2.25 17.25 5.61469 17.25 9.75C17.25 13.8853 13.8853 17.25 9.75001 17.25C5.6147 17.25 2.25001 13.8844 2.25001 9.75Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledSearchRegular);
const SearchRegular = /*#__PURE__*/memo(ForwardRef);
export default SearchRegular;