UNPKG

@astraicons/react

Version:

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

31 lines 1.29 kB
const React = require("react"); const { forwardRef } = require("react"); const MobileRotationIcon = ({ 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", { d: "M5.345 13.044A3.145 3.145 0 0 1 4.88 8.62l2.386-2.947a3.145 3.145 0 0 1 4.423-.467l6.867 5.557a3.145 3.145 0 0 1 .467 4.424l-2.386 2.948a3.145 3.145 0 0 1-4.424.466z" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "m7.344 10.248 2.349-2.903" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "m20.38 8.96-.226-3.393M3.629 15l.285 3.473M13 2.617s2.427.968 3.919 2.276C18.323 6.125 20.38 8.96 20.38 8.96M11.279 21.386s-2.767-1.228-4.321-2.548C5.53 17.626 3.628 15 3.628 15" }), /*#__PURE__*/React.createElement("path", { d: "M16.502 14.5a1.2 1.2 0 1 1-2.4 0 1.2 1.2 0 0 1 2.4 0Z" })); const ForwardRef = forwardRef(MobileRotationIcon); module.exports = ForwardRef;