@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
20 lines • 1.18 kB
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const Emoji1Icon = ({
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: "M12 1.975c5.385 0 9.75 4.365 9.75 9.75s-4.365 9.75-9.75 9.75-9.75-4.366-9.75-9.75 4.365-9.75 9.75-9.75m.001 11.566c-1.426 0-2.524.752-3.226 1.426a7 7 0 0 0-1.028 1.25l-.058.095-.016.028-.006.009-.001.003-.001.002a.75.75 0 0 0 .651 1.12h7.37a.75.75 0 0 0 .652-1.12l-.002-.002-.001-.003-.006-.01-.017-.027-.057-.094a7.076 7.076 0 0 0-1.028-1.251c-.702-.674-1.8-1.426-3.226-1.426m-2.735-4.35a1.154 1.154 0 1 0 .167.167l-.08-.087zm6.588 0a1.154 1.154 0 1 0 .088 1.71c.42-.421.447-1.09.078-1.543l-.079-.087zM8 6.02A.706.706 0 0 0 8 7.43h1.412a.706.706 0 0 0 0-1.412zm6.588 0a.706.706 0 0 0 0 1.412H16a.706.706 0 0 0 0-1.412z"
}));
const ForwardRef = forwardRef(Emoji1Icon);
export default ForwardRef;