@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
22 lines • 1 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const Mobile2Icon = ({
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", {
fillRule: "evenodd",
d: "M4.25 7a4.75 4.75 0 0 1 3.466-4.574l.657.985.987 1.535c.322.501.876.804 1.472.804h2.336a1.75 1.75 0 0 0 1.472-.804l.987-1.535.657-.985c2 .56 3.466 2.396 3.466 4.574v10A4.75 4.75 0 0 1 15 21.75H9A4.75 4.75 0 0 1 4.25 17zm5.151-4.75H14.6l-.223.334-.007.01-.99 1.541a.25.25 0 0 1-.21.115h-2.337a.25.25 0 0 1-.21-.115l-.991-1.54-.007-.011zm2.599 13a1.75 1.75 0 1 0 0 3.5 1.75 1.75 0 0 0 0-3.5",
clipRule: "evenodd"
}));
const ForwardRef = forwardRef(Mobile2Icon);
module.exports = ForwardRef;