@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.82 kB
JavaScript
const React = require("react");
function MaskIcon({
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: "M4.909 5.516a20.13 20.13 0 0 0-.609.016c-.802.034-1.561.103-2.217.103a.625.625 0 0 0-.62.553s-.08.69-.12 1.545c-.04.854-.056 1.856.133 2.641.231.961.642 1.983 1.42 2.748.67.66 1.551 1.017 2.397 1.188 1.166.236 2.51.299 3.71-.23.448-.197.736-.526.997-.818.26.292.55.621.998.819 1.2.528 2.543.465 3.709.229.846-.171 1.727-.528 2.397-1.188.778-.765 1.189-1.787 1.42-2.748.189-.785.173-1.787.133-2.641-.04-.855-.12-1.545-.12-1.545a.625.625 0 0 0-.62-.553c-1.312 0-3.038-.276-4.69.008-.685.118-1.52.423-2.224.7-.56.22-.836.347-1.003.421-.167-.074-.442-.2-1.003-.421-.703-.277-1.54-.582-2.225-.7a10.335 10.335 0 0 0-1.863-.127ZM6.055 8.6c.308.001.635.042.968.124.534.13.99.338 1.335.622.172.142.32.303.42.513.1.209.138.489.047.74-.182.503-.653.68-1.104.759-.45.077-.967.049-1.5-.082-.534-.13-.99-.338-1.335-.622a1.501 1.501 0 0 1-.42-.512.987.987 0 0 1-.047-.74c.182-.503.653-.681 1.103-.76.17-.028.348-.042.533-.042Zm7.744.018a3.23 3.23 0 0 1 .718.059c.448.09.913.282 1.08.79a.987.987 0 0 1-.068.738 1.499 1.499 0 0 1-.435.5c-.352.273-.815.468-1.352.583-.537.115-1.054.126-1.502.035-.449-.09-.914-.281-1.081-.789a.987.987 0 0 1 .068-.739c.106-.206.26-.363.436-.5.353-.273.814-.467 1.351-.582.269-.058.532-.089.785-.095z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(MaskIcon);
module.exports = ForwardRef;