@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.63 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 24 24",
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: "M18.5 2.25a.75.75 0 0 0-.75.75v1.75H16a.75.75 0 0 0-.75.75.75.75 0 0 0 .75.75h1.75V8a.75.75 0 0 0 .75.75.75.75 0 0 0 .75-.75V6.25H21a.75.75 0 0 0 .75-.75.75.75 0 0 0-.75-.75h-1.75V3a.75.75 0 0 0-.75-.75Zm-6.5 0c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75 9.75-4.365 9.75-9.75c0-1.524-.35-2.965-.973-4.25h-.027V8a2.25 2.25 0 0 1-2.25 2.25A2.25 2.25 0 0 1 16.25 8v-.25H16a2.25 2.25 0 0 1-2.25-2.25A2.25 2.25 0 0 1 16 3.25h.25v-.027A9.708 9.708 0 0 0 12 2.25Zm-2.625 6c.541 0 .828.42.936.635.13.26.189.567.189.865 0 .298-.06.605-.19.865-.107.215-.395.635-.935.635-.541 0-.828-.42-.936-.635a1.964 1.964 0 0 1-.189-.865 1.96 1.96 0 0 1 .19-.865c.107-.215.395-.635.935-.635Zm5.25 0c.54 0 .828.42.936.635.13.26.189.567.189.865 0 .298-.06.604-.19.865-.107.215-.394.635-.935.635-.54 0-.828-.42-.936-.635a1.96 1.96 0 0 1-.189-.865c0-.298.06-.604.19-.865.107-.215.394-.635.935-.635Zm.617 6.164a.75.75 0 0 1 .47 1.299 5.25 5.25 0 0 1-7.425 0 .75.75 0 0 1 1.06-1.06 3.75 3.75 0 0 0 5.305 0 .75.75 0 0 1 .59-.239z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FaceSmilePlusIcon);
module.exports = ForwardRef;