@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
20 lines • 1.43 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const SadEmojiIcon = ({
title,
titleId,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M16.5 2.25c2.9 0 5.25 2.35 5.25 5.25v9c0 2.9-2.35 5.25-5.25 5.25h-9a5.25 5.25 0 0 1-5.25-5.25v-9c0-2.9 2.35-5.25 5.25-5.25zm-4.543 12.705a6.1 6.1 0 0 0-3.723 1.266 4 4 0 0 0-.277.236l-.02.018-.005.006-.003.002-.001.001c.002.003.037-.034.029-.027l-.03.028a.75.75 0 0 0 1.057 1.066l.004-.004.03-.027q.043-.039.14-.117a4.605 4.605 0 0 1 5.01-.384c.26.142.458.282.588.383.064.05.112.092.14.117l.03.028.004.004a.751.751 0 0 0 1.057-1.065l-.002-.002-.003-.002-.005-.006-.019-.018-.062-.057a5.79 5.79 0 0 0-1.01-.7 6.1 6.1 0 0 0-2.929-.746M10.223 9.66a1.152 1.152 0 0 0-1.543 1.71 1.154 1.154 0 0 0 1.71-1.543l-.08-.088zm5 0a1.152 1.152 0 0 0-1.543 1.71 1.154 1.154 0 0 0 1.71-1.543l-.08-.088zM10.63 6.506a.75.75 0 0 0-.937-.5l-1.913.584a.75.75 0 0 0 .438 1.435l1.913-.583a.75.75 0 0 0 .499-.936m3.588-.5a.75.75 0 0 0-.438 1.436l1.913.583a.75.75 0 0 0 .438-1.435z"
}));
const ForwardRef = forwardRef(SadEmojiIcon);
module.exports = ForwardRef;