UNPKG

@astraicons/react

Version:

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

34 lines 1.03 kB
const React = require("react"); const { forwardRef } = require("react"); const On2Icon = ({ 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("circle", { cx: 12, cy: 12, r: 9, strokeLinecap: "round" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M12 9V6", opacity: 0.4 }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M9.889 12H9.11C8.497 12 8 12.498 8 13.111v1.778C8 15.503 8.497 16 9.111 16h.778c.614 0 1.111-.498 1.111-1.111V13.11C11 12.497 10.502 12 9.889 12M13 16v-4l3 4v-4", opacity: 0.4 })); const ForwardRef = forwardRef(On2Icon); module.exports = ForwardRef;