const CommentIcon = ({ className }: { className?: string }) => {
  return (
    <svg
      width="16"
      height="16"
      viewBox="0 0 16 16"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
      className={className}
    >
      <path
        d="M4.44248 14.546L0.492188 15.4238L1.37003 11.4735C0.809813 10.4259 0.492188 9.22906 0.492188 7.95801C0.492188 3.83475 3.83475 0.492188 7.95801 0.492188C12.0812 0.492188 15.4238 3.83475 15.4238 7.95801C15.4238 12.0812 12.0812 15.4238 7.95801 15.4238C6.68695 15.4238 5.49011 15.1062 4.44248 14.546ZM4.65868 12.9683L5.14659 13.2292C6.00381 13.6877 6.96169 13.9307 7.95801 13.9307C11.2566 13.9307 13.9307 11.2566 13.9307 7.95801C13.9307 4.6594 11.2566 1.98535 7.95801 1.98535C4.6594 1.98535 1.98535 4.6594 1.98535 7.95801C1.98535 8.95432 2.22836 9.91219 2.68676 10.7694L2.94767 11.2573L2.4588 13.4572L4.65868 12.9683Z"
        fill="currentColor"
      />
    </svg>
  );
};

export { CommentIcon };
