@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.78 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 StyledCommentPenSolid = ({
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.45776C5.37188 1.45776 0.0421879 5.82136 0.0421879 11.2078C0.0421879 13.5323 1.04438 15.6187 2.71266 17.3343C2.12672 19.6964 0.166875 21.8015 0.143438 21.8249C0.0409223 21.9326 0.0130785 22.0923 0.0731254 22.2329C0.134625 22.3735 0.266485 22.4578 0.415876 22.4578C3.52416 22.4578 5.85338 20.9671 7.0065 20.0479C8.54025 20.6249 10.2413 20.9578 12.0409 20.9578C18.669 20.9578 23.9987 16.5942 23.9987 11.2499C23.9987 5.90573 18.6281 1.45776 12 1.45776ZM10.0828 15.7921C9.99108 15.8839 9.87446 15.9461 9.74738 15.9716L7.14347 16.4924C6.91388 16.5383 6.71152 16.3358 6.7575 16.1064L7.27829 13.5029C7.30374 13.3759 7.36618 13.2591 7.45791 13.1675L12.0334 8.59204L14.6584 11.2175L10.0828 15.7921ZM16.8656 9.00932L15.7181 10.1568L13.0931 7.53136L14.2406 6.38386C14.7534 5.87151 15.5841 5.87151 16.0969 6.38386L16.8661 7.15308C17.3766 7.6687 17.3766 8.49839 16.8656 9.00932Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledCommentPenSolid);
const CommentPenSolid = /*#__PURE__*/memo(ForwardRef);
export default CommentPenSolid;