@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.35 kB
JavaScript
const React = require("react");
function H6Icon({
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: "M14.908 8.021c-.512.057-.971.226-1.357.536-.772.62-1.051 1.64-1.051 2.843v2.176c0 .764.312 1.444.818 1.858.507.413 1.14.566 1.766.566.625 0 1.25-.163 1.719-.6.468-.436.697-1.096.697-1.824s-.23-1.388-.697-1.824c-.468-.436-1.094-.6-1.719-.6-.374 0-.726.152-1.084.262V11.4c0-.972.22-1.457.49-1.673.27-.217.789-.33 1.758-.106a.75.75 0 0 0 .898-.56.75.75 0 0 0-.56-.9c-.599-.14-1.165-.196-1.678-.14Zm.176 4.631c.374 0 .58.09.695.198.116.107.221.283.221.726 0 .444-.105.621-.22.729-.116.107-.322.195-.696.195-.374 0-.658-.098-.818-.229-.16-.13-.266-.287-.266-.695v-.334c0-.294.042-.32.19-.412.147-.092.478-.178.894-.178zM2.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(H6Icon);
module.exports = ForwardRef;