UNPKG

@astraicons/react

Version:

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

24 lines 993 B
const React = require("react"); const { forwardRef } = require("react"); const EyeIcon = ({ 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", { d: "M9.75 12a2.25 2.25 0 1 1 4.5 0 2.25 2.25 0 0 1-4.5 0" }), /*#__PURE__*/React.createElement("path", { fillRule: "evenodd", d: "M2.78 9.742A10.2 10.2 0 0 1 12 4.252a10.2 10.2 0 0 1 9.22 5.49l.007.014a5.07 5.07 0 0 1 0 4.487l-.008.015A10.2 10.2 0 0 1 12 19.748a10.2 10.2 0 0 1-9.22-5.49l-.007-.015A5.1 5.1 0 0 1 2.25 12v-.002c.001-.777.18-1.544.523-2.242zM12 8.25a3.75 3.75 0 1 0 0 7.5 3.75 3.75 0 0 0 0-7.5", clipRule: "evenodd" })); const ForwardRef = forwardRef(EyeIcon); module.exports = ForwardRef;