@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
35 lines • 1.44 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const GameIcon = ({
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",
strokeLinejoin: "round",
d: "M6 11h4m-2 2V9",
opacity: 0.4
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M17.765 11.235a.375.375 0 1 1-.532.53.375.375 0 0 1 .532-.53M13.765 11.235a.375.375 0 1 1-.532.53.375.375 0 0 1 .532-.53M15.765 9.235a.375.375 0 1 1-.532.53.375.375 0 0 1 .532-.53M15.765 13.235a.375.375 0 1 1-.532.53.375.375 0 0 1 .532-.53",
opacity: 0.4
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M12.618 6.008c.14-2.041.136-1.983-1.29-2.75"
}), /*#__PURE__*/React.createElement("path", {
d: "M21 11.5v6.987a2.143 2.143 0 0 1-3.899 1.229l-2.004-2.863A2 2 0 0 0 13.46 16H10.54a2 2 0 0 0-1.638.853L6.757 19.92a1.8 1.8 0 0 1-2.016.688A2.48 2.48 0 0 1 3 18.239V11.5A5.5 5.5 0 0 1 8.5 6h7a5.5 5.5 0 0 1 5.5 5.5Z"
}));
const ForwardRef = forwardRef(GameIcon);
module.exports = ForwardRef;