@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
34 lines • 1.32 kB
JavaScript
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",
opacity: 0.4
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "m20.155 5.567.225 3.393s-2.057-2.835-3.461-4.067C15.427 3.585 13 2.617 13 2.617M3.628 15l.286 3.473m7.365 2.913s-2.767-1.228-4.321-2.548C5.53 17.626 3.627 15 3.627 15",
opacity: 0.4
}), /*#__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",
opacity: 0.4
}));
const ForwardRef = forwardRef(MobileRotationIcon);
module.exports = ForwardRef;