@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
22 lines • 1.04 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const MonitorIcon = ({
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: "M7.5 2.25A5.25 5.25 0 0 0 2.25 7.5v4c0 2.9 2.35 5.25 5.25 5.25h3.75V18a.75.75 0 0 0 1.5 0v-1.25h3.75c2.9 0 5.25-2.35 5.25-5.25v-4c0-2.9-2.35-5.25-5.25-5.25zm5.25 14.5V16a.75.75 0 0 0-1.5 0v.75zM10 12.25a.75.75 0 0 0 0 1.5h4a.75.75 0 0 0 0-1.5zm-2.674 9.425c1.252-.604 2.942-.925 4.674-.925 1.731 0 3.422.321 4.674.925a.75.75 0 1 0 .652-1.35c-1.51-.73-3.438-1.075-5.326-1.075s-3.817.346-5.326 1.075a.75.75 0 1 0 .652 1.35",
clipRule: "evenodd"
}));
const ForwardRef = forwardRef(MonitorIcon);
module.exports = ForwardRef;