@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 2.18 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 StyledCommentPenRegular = ({
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.1969 6.99839C14.8673 6.66881 14.332 6.66881 14.003 6.99839L13.1484 7.85292L15.3989 10.1034L16.2539 9.24839C16.5834 8.91862 16.5834 8.38401 16.2539 8.05448L15.1969 6.99839ZM8.10469 12.8953C8.025 12.9703 7.97344 13.0734 7.95 13.1812L7.5037 15.4129C7.46443 15.6096 7.63781 15.7831 7.83459 15.7438L10.0663 15.2976C10.1752 15.2756 10.2751 15.2221 10.3537 15.1438L14.5996 10.8983L12.3516 8.64839L8.10469 12.8953ZM12 1.45776C5.37187 1.45776 0.0421831 5.82323 0.0421831 11.2078C0.0421831 13.4399 0.975465 15.4851 2.52234 17.1281C1.82531 18.9796 0.372183 20.5443 0.348746 20.5617C0.0382925 20.8898 -0.0437388 21.3703 0.132043 21.7804C0.272621 22.2328 0.674058 22.4999 1.125 22.4999C4.00734 22.4999 6.23906 21.2929 7.64531 20.332C8.99859 20.7539 10.4653 20.9999 12 20.9999C18.6281 20.9999 23.9578 16.6345 23.9578 11.2921C23.9578 5.94979 18.6281 1.45776 12 1.45776ZM12 18.7499C10.7461 18.7499 9.51 18.5566 8.32687 18.1818L7.26047 17.8478L6.34687 18.4921C5.6789 18.9665 4.75922 19.4943 3.65203 19.8515C3.99764 19.2834 4.32562 18.6445 4.58344 17.9648L5.08125 16.6523L4.11469 15.6267C3.27234 14.7234 2.25281 13.2328 2.25281 11.2499C2.25281 7.11323 6.62344 3.74995 11.9606 3.74995C17.3372 3.74995 21.6684 7.11323 21.6684 11.2499C21.6684 15.3867 17.3813 18.7499 12 18.7499Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledCommentPenRegular);
const CommentPenRegular = /*#__PURE__*/memo(ForwardRef);
export default CommentPenRegular;