@sidekickicons/react
Version:
<p align="center"> <a href="https://heroicons.com" target="_blank"> <picture> <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/ndri/sidekickicons/HEAD/.github/logo-dark.svg"> <source media="(prefers-
22 lines • 1.3 kB
JavaScript
const React = require("react");
function GamepadIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
"data-slot": "icon",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M7 6.5a4.756 4.756 0 0 0-4.75 4.75v1.5A4.756 4.756 0 0 0 7 17.5h10a4.756 4.756 0 0 0 4.75-4.75v-1.5A4.756 4.756 0 0 0 17 6.5H7zm9 2c.681 0 1.25.569 1.25 1.25S16.681 11 16 11s-1.25-.569-1.25-1.25S15.319 8.5 16 8.5zM7.5 9a.75.75 0 0 1 .75.75v1.5h1.5a.75.75 0 0 1 .75.75.75.75 0 0 1-.75.75h-1.5v1.5a.75.75 0 0 1-.75.75.75.75 0 0 1-.75-.75v-1.5h-1.5A.75.75 0 0 1 4.5 12a.75.75 0 0 1 .75-.75h1.5v-1.5A.75.75 0 0 1 7.5 9zm6.25 1.75c.681 0 1.25.569 1.25 1.25s-.569 1.25-1.25 1.25-1.25-.569-1.25-1.25.569-1.25 1.25-1.25zm4.5 0c.681 0 1.25.569 1.25 1.25s-.569 1.25-1.25 1.25S17 12.681 17 12s.569-1.25 1.25-1.25zM16 13c.681 0 1.25.569 1.25 1.25S16.681 15.5 16 15.5s-1.25-.569-1.25-1.25S15.319 13 16 13z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(GamepadIcon);
module.exports = ForwardRef;