@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.28 kB
JavaScript
const React = require("react");
function FaceSmilePlusIcon({
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: "M12.5 1a.75.75 0 0 0-.75.75v1h-1a.75.75 0 0 0-.75.75.75.75 0 0 0 .75.75h1v1a.75.75 0 0 0 .75.75.75.75 0 0 0 .75-.75v-1h1A.75.75 0 0 0 15 3.5a.75.75 0 0 0-.75-.75h-1v-1A.75.75 0 0 0 12.5 1Zm-5.023.02A7 7 0 0 0 1 8a7 7 0 0 0 14 0 7 7 0 0 0-.414-2.326A2.25 2.25 0 0 1 12.5 7.5a2.25 2.25 0 0 1-2.104-1.896A2.25 2.25 0 0 1 8.5 3.5a2.25 2.25 0 0 1 1.828-2.086 7 7 0 0 0-2.851-.394ZM6 6.5c.552 0 1 .672 1 1.5s-.448 1.5-1 1.5S5 8.828 5 8s.448-1.5 1-1.5Zm4 0c.552 0 1 .672 1 1.5s-.448 1.5-1 1.5S9 8.828 9 8s.448-1.5 1-1.5Zm.475 4.025a.75.75 0 0 1 .53.22.75.75 0 0 1 0 1.06 4.25 4.25 0 0 1-6.01 0 .75.75 0 0 1 1.06-1.06 2.75 2.75 0 0 0 3.89 0 .75.75 0 0 1 .53-.22z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FaceSmilePlusIcon);
module.exports = ForwardRef;