UNPKG

@astraicons/react

Version:

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

24 lines 1.21 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", 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: "M21.744 12c0 5.385-4.365 9.75-9.75 9.75s-9.75-4.365-9.75-9.75 4.365-9.75 9.75-9.75 9.75 4.365 9.75 9.75m-9.5 0v4a.75.75 0 0 0 1.5 0v-1.751l1.65 2.201a.75.75 0 0 0 1.35-.45v-4a.75.75 0 1 0-1.5 0v1.75l-1.65-2.2a.75.75 0 0 0-1.35.45m-1-6v3a.75.75 0 0 0 1.5 0V6a.75.75 0 1 0-1.5 0M9.883 16.75a1.86 1.86 0 0 0 1.861-1.861V13.11a1.86 1.86 0 0 0-1.861-1.861h-.778a1.86 1.86 0 0 0-1.86 1.861v1.778c0 1.027.833 1.861 1.86 1.861z" }), /*#__PURE__*/React.createElement("path", { fillRule: "evenodd", d: "M10.244 13.111c0-.2-.162-.361-.361-.361h-.778c-.199 0-.36.162-.36.361v1.778c0 .2.161.361.36.361h.778c.2 0 .361-.162.361-.361z", clipRule: "evenodd" })); const ForwardRef = forwardRef(On2Icon); module.exports = ForwardRef;