UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.82 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 StyledCommentsSolid = ({ 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: "M15.6001 8.6C15.6001 4.955 12.1088 2 7.80008 2C3.49133 2 6.95235e-05 4.955 6.95235e-05 8.6C6.95235e-05 10.0839 0.58582 11.4485 1.5627 12.5525C0.948071 13.781 0.0915697 14.702 0.0780696 14.7155C-0.000680477 14.7982 -0.0220555 14.9208 0.0240321 15.0288C0.0713196 15.1363 0.172645 15.2 0.28732 15.2C1.72545 15.2 2.94082 14.783 3.87758 14.2985C5.03258 14.8663 6.36758 15.2 7.80008 15.2C12.1088 15.2 15.6001 12.245 15.6001 8.6ZM22.4851 18.6388C23.4301 17.5213 24.0001 16.1225 24.0001 14.6C24.0001 10.955 20.7751 8 16.8001 8C16.7883 8 16.7769 8.00154 16.7651 8.00161C16.7813 8.19875 16.8001 8.3975 16.8001 8.6C16.8001 12.2983 13.8121 15.395 9.82133 16.1938C10.6013 19.0662 13.3913 21.2 16.8001 21.2C18.0635 21.2 19.2496 20.8997 20.282 20.3757C21.1951 20.825 22.3539 21.2 23.7114 21.2C23.8261 21.2 23.9274 21.1353 23.9746 21.0273C24.0207 20.9193 23.9993 20.7968 23.9206 20.714C23.9101 20.7013 23.0964 19.8238 22.4851 18.6388Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledCommentsSolid); const CommentsSolid = /*#__PURE__*/memo(ForwardRef); export default CommentsSolid;