@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
28 lines • 1.09 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const MaximizeIcon = ({
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", {
strokeLinecap: "round",
d: "M21 9.3V7.2A4.2 4.2 0 0 0 16.8 3h-3M21 13.8v3.02A4.18 4.18 0 0 1 16.82 21H13.8M3 9.3V7.2A4.2 4.2 0 0 1 7.2 3h2.1M3 13.8v3.02A4.18 4.18 0 0 0 7.18 21h3.02"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M17.788 6.146v2.612m0-2.612h-2.693m2.693 0L14.699 9.3M6.105 6.146v2.612m0-2.612H8.8m-2.694 0L9.3 9.341M17.789 17.768v-2.612m0 2.612h-2.693m2.693 0-3.09-3.068M6.106 15.156v2.612h2.693",
opacity: 0.4
}));
const ForwardRef = forwardRef(MaximizeIcon);
module.exports = ForwardRef;