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

export const ChatDiscussionIcon = ({
  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,8h-3v-4c0-1.1-.9-2-2-2H4c-1.1,0-2,.9-2,2v8c0,1.1.9,2,2,2h1v2c0,.38.21.72.55.89.14.07.29.11.45.11.21,0,.42-.07.6-.2l2.4-1.8v2c0,1.1.9,2,2,2h3.67l3.73,2.8c.18.13.39.2.6.2.15,0,.31-.04.45-.11.34-.17.55-.52.55-.89v-2c1.1,0,2-.9,2-2v-7c0-1.1-.9-2-2-2Zm-14,4h-2V4h11v8h-5c-.12,0-.24.03-.35.07-.04.02-.07.04-.11.06-.05.02-.09.04-.14.07l-2.4,1.8v-1c0-.55-.45-1-1-1Zm14,5h-1c-.55,0-1,.45-1,1v1l-2.4-1.8c-.17-.13-.38-.2-.6-.2h-4v-3h4c1.1,0,2-.9,2-2v-2h3v7Z" />
  </svg>
);

Icon

ChatDiscussion

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

ChatDotsChatExclamationChatLeftChatMessageChatRightChatSquare