@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
27 lines • 1.12 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.79 6.146v2.612M17.789 6.146h-2.693M14.7 9.3l3.088-3.154M6.105 6.146v2.612M6.106 6.146h2.693M9.301 9.34 6.107 6.147M17.79 17.768v-2.612M17.789 17.768h-2.693M14.7 14.7l3.088 3.068M6.105 17.768v-2.612M6.106 17.768h2.693"
}));
const ForwardRef = forwardRef(MaximizeIcon);
module.exports = ForwardRef;