@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.22 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 20 20",
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: "M13.434 8a.75.75 0 0 0-.748.707l-.184 3.166a.75.75 0 0 0 .748.793h1.842c.515 0 .684.116.763.201.08.085.145.245.145.551 0 .333-.024.66-.088.818-.063.156-.046.194-.375.235a9.778 9.778 0 0 1-2.185-.076.75.75 0 0 0-.846.642.75.75 0 0 0 .642.844c.882.12 1.629.15 2.524.086a.75.75 0 0 0 .035-.004c.782-.093 1.377-.622 1.596-1.164.219-.542.197-1.048.197-1.381 0-.527-.122-1.12-.549-1.576-.427-.457-1.085-.676-1.86-.676h-1.046l.098-1.666h2.607a.75.75 0 0 0 .75-.75.75.75 0 0 0-.75-.75ZM2.75 4a.75.75 0 0 1 .75.75v4.5h5v-4.5a.75.75 0 0 1 1.5 0v10.5a.75.75 0 0 1-1.5 0v-4.5h-5v4.5a.75.75 0 0 1-1.5 0V4.75A.75.75 0 0 1 2.75 4Z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(H5Icon);
module.exports = ForwardRef;