import type { SVGProps } from "react";

export function MessageTextIcon(props: SVGProps<SVGSVGElement>) {
  return (
    <svg viewBox="0 0 26 26" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
      <path
        d="M22.75 16.25C22.75 16.8246 22.5217 17.3757 22.1154 17.7821C21.7091 18.1884 21.158 18.4167 20.5833 18.4167H7.58333L3.25 22.75V5.41667C3.25 4.84203 3.47827 4.29093 3.8846 3.8846C4.29093 3.47827 4.84203 3.25 5.41667 3.25H20.5833C21.158 3.25 21.7091 3.47827 22.1154 3.8846C22.5217 4.29093 22.75 4.84203 22.75 5.41667V16.25Z"
        stroke="currentColor"
        strokeWidth="2.1125"
        strokeLinecap="round"
        strokeLinejoin="round"
      />
      <path
        d="M8.66797 10.834H17.3346M8.66797 14.084H14.0846"
        stroke="currentColor"
        strokeWidth="1.625"
        strokeLinecap="round"
      />
    </svg>
  );
}
