@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.31 kB
JavaScript
const React = require("react");
function H5Icon({
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: "M2.246 3.746a.75.75 0 0 0-.75.75v7.5a.75.75 0 0 0 0 .002v7.5a.75.75 0 0 0 .75.75.75.75 0 0 0 .75-.75v-6.75h9v6.75a.75.75 0 0 0 .75.75.75.75 0 0 0 .75-.75v-15a.75.75 0 0 0-.75-.75.75.75 0 0 0-.75.75v6.75h-9V4.496a.75.75 0 0 0-.75-.75zM17 9a.75.75 0 0 0-.75.71L16 14.46a.75.75 0 0 0 .75.79h2.5c.732 0 1.026.177 1.207.39.181.215.293.585.293 1.11 0 .5-.02 1.048-.146 1.393-.125.342-.215.49-.733.56a12.238 12.238 0 0 1-3.012-.111.75.75 0 0 0-.851.629.75.75 0 0 0 .63.853c1.188.178 2.182.223 3.385.127a.75.75 0 0 0 .038-.006 2.414 2.414 0 0 0 1.95-1.537c.259-.705.239-1.408.239-1.908 0-.725-.14-1.48-.646-2.078-.507-.599-1.336-.922-2.354-.922h-1.71l.17-3.25 3.788.002a.75.75 0 0 0 .752-.75.75.75 0 0 0-.75-.75z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(H5Icon);
module.exports = ForwardRef;