UNPKG

@astraicons/react

Version:

A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.

24 lines 931 B
const React = require("react"); const { forwardRef } = require("react"); const SearchZoomInIcon = ({ title, titleId, ...props }, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", "aria-hidden": "true", ref: ref, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { fillRule: "evenodd", d: "M11 19a8 8 0 1 0 0-16 8 8 0 0 0 0 16m0-11.75a.75.75 0 0 1 .75.75v2.25H14a.75.75 0 0 1 0 1.5h-2.25V14a.75.75 0 0 1-1.5 0v-2.25H8a.75.75 0 0 1 0-1.5h2.25V8a.75.75 0 0 1 .75-.75", clipRule: "evenodd" }), /*#__PURE__*/React.createElement("path", { d: "M18.124 16.927a.75.75 0 0 0-1.108 1.012l2.86 3.134a.75.75 0 1 0 1.108-1.011z" })); const ForwardRef = forwardRef(SearchZoomInIcon); module.exports = ForwardRef;