@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.8 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 16 16",
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: "M3.927 4.413c-.164.002-.326.006-.487.013-.642.026-1.249.082-1.773.082a.5.5 0 0 0-.496.443s-.065.552-.097 1.235c-.032.684-.044 1.485.107 2.114.185.768.514 1.586 1.135 2.197.537.528 1.242.814 1.918.951.933.189 2.008.24 2.968-.184.359-.158.59-.42.798-.655.209.234.44.497.798.655.96.423 2.035.373 2.968.184.676-.137 1.381-.423 1.918-.95.621-.612.95-1.43 1.135-2.198.151-.629.139-1.43.107-2.114-.032-.683-.097-1.235-.097-1.235a.5.5 0 0 0-.496-.443c-1.049 0-2.43-.22-3.751.006-.548.095-1.217.339-1.78.56-.448.176-.668.278-.802.338-.134-.06-.354-.162-.802-.338-.563-.221-1.232-.465-1.78-.56-.495-.085-1-.107-1.49-.101Zm.917 2.467c.246.001.508.034.774.1.427.104.793.27 1.068.497a1.2 1.2 0 0 1 .336.41.79.79 0 0 1 .038.592c-.146.402-.522.545-.883.607a2.98 2.98 0 0 1-1.2-.065c-.427-.105-.793-.27-1.068-.497a1.2 1.2 0 0 1-.336-.41.79.79 0 0 1-.038-.593c.146-.402.522-.545.883-.607.135-.023.278-.034.426-.034Zm6.195.015c.202-.005.395.01.574.046.359.073.731.226.865.632a.79.79 0 0 1-.055.591c-.084.165-.206.29-.347.4-.282.218-.653.374-1.083.466-.43.092-.843.102-1.201.029-.359-.073-.731-.226-.865-.632a.79.79 0 0 1 .055-.591c.084-.165.208-.29.349-.4.282-.218.65-.374 1.08-.466.215-.046.426-.07.628-.075z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(MaskIcon);
module.exports = ForwardRef;