UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.56 kB
import React, { forwardRef, memo } from "react"; import { AccessibleIcon } from "../accessible-icon"; import { StyledSvg, StyledPath } from "../styles"; import { jsx as _jsx } from "react/jsx-runtime"; const StyledCommentSmileSolid = ({ label, color = "#000000", className = "", css = {}, viewBox = "0 0 24 24" }, ref) => { return /*#__PURE__*/_jsx(AccessibleIcon, { label: label, children: /*#__PURE__*/_jsx(StyledSvg, { className: className, css: css, viewBox: viewBox, xmlns: "http://www.w3.org/2000/svg", xmlnsXlink: "http://www.w3.org/1999/xlink", ref: ref, children: /*#__PURE__*/_jsx(StyledPath, { css: { fill: `${color}` }, d: "M12 1.458C5.372 1.458.042 5.823.042 11.208c0 2.326 1.001 4.452 2.67 6.126C2.128 19.696.17 21.8.146 21.824a.364.364 0 0 0-.07.409.36.36 0 0 0 .34.223c3.106 0 5.396-1.488 6.591-2.409a14.34 14.34 0 0 0 5.035.91C18.67 20.957 24 16.591 24 11.249c0-5.343-5.37-9.791-11.999-9.791Zm2.958 5.292c.832 0 1.458.668 1.458 1.5s-.668 1.458-1.5 1.458-1.458-.624-1.458-1.458.708-1.5 1.5-1.5Zm-6 0c.832 0 1.458.668 1.458 1.5S9.83 9.708 8.958 9.708s-1.5-.624-1.5-1.458.708-1.5 1.5-1.5Zm8.02 7.467A6.529 6.529 0 0 1 12 16.502a6.523 6.523 0 0 1-4.978-2.285 1.12 1.12 0 1 1 1.706-1.453 4.29 4.29 0 0 0 6.499-.002 1.118 1.118 0 0 1 1.581-.13c.517.404.569 1.116.17 1.585Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledCommentSmileSolid); const CommentSmileSolid = /*#__PURE__*/memo(ForwardRef); export default CommentSmileSolid;