next-icons-logoNext IconsAll Icons
export type IconProps = {
  size?: number | string;
  color?: string;
  className?: string;
} & React.SVGProps<SVGSVGElement>;

export const ChatSquareIcon = ({
  size = 24,
  color = "currentColor",
  className,
  ...props
}: IconProps) => (
  <svg
    xmlns="http://www.w3.org/2000/svg"
    viewBox="0 0 24 24"
    width={size}
    height={size}
    fill={color}
    className={className}
    {...props}
  >
      <path d="m20,2H4c-1.1,0-2,.9-2,2v12c0,1.1.9,2,2,2h6.72l4.76,2.86c.16.09.34.14.51.14s.34-.04.49-.13c.31-.18.51-.51.51-.87v-2h3c1.1,0,2-.9,2-2V4c0-1.1-.9-2-2-2Zm0,14h-4c-.55,0-1,.45-1,1v1.23l-3.49-2.09c-.16-.09-.33-.14-.51-.14h-7V4h16v12Z" />
       
  </svg>
);

Icon

ChatSquare

Category

chat

Use case

Use this icon in navbar items, social link groups, profile actions, settings rows, and call-to-action buttons.

Size

48px

Color

#18181b

Related chat icons

ChatDiscussionChatDotsChatExclamationChatLeftChatMessageChatRight