UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.93 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 StyledCommentSmileRegular = ({ 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.232.933 4.277 2.48 5.92C1.825 18.98.372 20.544.35 20.562c-.31.328-.393.808-.217 1.218.14.453.542.72.993.72 2.882 0 5.114-1.207 6.52-2.168C9 20.754 10.465 21 12 21c6.628 0 11.958-4.366 11.958-9.708 0-5.342-5.33-9.834-11.958-9.834Zm0 17.292c-1.254 0-2.49-.193-3.673-.568l-1.067-.334-.913.644a10.026 10.026 0 0 1-2.695 1.36c.346-.569.674-1.207.931-1.887l.498-1.313-.966-1.025c-.843-.904-1.862-2.394-1.862-4.377 0-4.137 4.37-7.5 9.708-7.5 5.376 0 9.707 3.363 9.707 7.5 0 4.137-4.287 7.5-9.668 7.5Zm2.958-9.042c.832 0 1.5-.668 1.5-1.458 0-.79-.669-1.5-1.458-1.5-.79 0-1.458.668-1.458 1.5s.624 1.458 1.416 1.458Zm-6 0c.832 0 1.5-.668 1.5-1.458 0-.79-.669-1.5-1.458-1.5-.79 0-1.458.668-1.458 1.5s.624 1.458 1.416 1.458Zm6.31 3.056c-.807.942-1.998 1.486-3.31 1.486a4.29 4.29 0 0 1-3.27-1.488c-.363-.476-1.076-.528-1.544-.13a1.123 1.123 0 0 0-.127 1.585 6.53 6.53 0 0 0 4.978 2.285 6.524 6.524 0 0 0 4.978-2.285 1.123 1.123 0 0 0-.128-1.582 1.109 1.109 0 0 0-1.578.13Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledCommentSmileRegular); const CommentSmileRegular = /*#__PURE__*/memo(ForwardRef); export default CommentSmileRegular;