@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 2.37 kB
JavaScript
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 StyledCommentsRegular = ({
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: "M7.8 2C12.1088 2 15.6 4.955 15.6 8.6C15.6 12.245 12.1088 15.2 7.8 15.2C7.09875 15.2 6.42 15.1138 5.77125 14.9675C4.62375 15.68 2.96738 16.4 0.935625 16.4C0.561375 16.4 0.222375 16.1788 0.075675 15.8338C-0.0711 15.4888 -0.000277501 15.0913 0.252713 14.8212C0.27225 14.8063 1.10175 13.9025 1.71488 12.7213C0.64425 11.5925 0 10.16 0 8.6C0 4.955 3.49238 2 7.8 2ZM6.1725 13.1788C6.72 13.3363 7.2675 13.4 7.8 13.4C11.1075 13.4 13.8 11.2475 13.8 8.6C13.8 5.9525 11.1075 3.8 7.8 3.8C4.4925 3.8 1.8 5.9525 1.8 8.6C1.8 9.92 2.46413 10.895 3.02138 11.4838L3.90375 12.4175L3.31163 13.5538C3.17775 13.7788 3.02738 14.0713 2.87063 14.3188C3.53475 14.1275 4.18875 13.8313 4.82625 13.4038L5.4525 13.0475L6.1725 13.1788ZM16.56 6.8075C20.7 6.965 24 9.85625 24 13.4C24 14.96 23.355 16.3925 22.2863 17.5213C22.8975 18.7025 23.7262 19.6063 23.7488 19.6213C24 19.8913 24.0713 20.2887 23.8913 20.6338C23.7787 20.9788 23.4375 21.2 23.0625 21.2C21.0338 21.2 19.3763 20.48 18.2288 19.7675C17.58 19.9137 16.9013 20 16.2 20C13.125 20 10.4663 18.4925 9.195 16.3063C9.84375 16.22 10.4663 16.0738 11.0588 15.8713C12.1088 17.2663 14.0213 18.2 16.2 18.2C16.7325 18.2 17.28 18.1363 17.8275 17.9788L18.5475 17.8475L19.1737 18.2038C19.8113 18.6313 20.4638 18.9275 21.1313 19.1188C20.9738 18.8713 20.8238 18.5788 20.6888 18.3538L20.0963 17.2175L20.9775 16.2838C21.5363 15.6988 22.2 14.72 22.2 13.4C22.2 10.9138 19.8263 8.86625 16.7663 8.6225L16.8 8.6C16.8 7.98125 16.7175 7.38125 16.56 6.8075Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledCommentsRegular);
const CommentsRegular = /*#__PURE__*/memo(ForwardRef);
export default CommentsRegular;