UNPKG

@astraicons/react

Version:

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

30 lines 952 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", fill: "none", viewBox: "0 0 24 24", strokeWidth: 1.5, stroke: "currentColor", "aria-hidden": "true", ref: ref, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M3 12c0-.663.153-1.317.446-1.912A9.45 9.45 0 0 1 12 5.002a9.45 9.45 0 0 1 8.554 5.086 4.32 4.32 0 0 1 0 3.824A9.45 9.45 0 0 1 12 18.998a9.45 9.45 0 0 1-8.554-5.086A4.35 4.35 0 0 1 3 12", clipRule: "evenodd" }), /*#__PURE__*/React.createElement("circle", { cx: 12, cy: 12, r: 3, opacity: 0.4 })); const ForwardRef = forwardRef(EyeIcon); module.exports = ForwardRef;