export default function Messaging({
  width,
  height,
  className,
}: {
  width?: number;
  height?: number;
  className?: string;
}) {
  return (
    <svg width={width || 24} height={height || 24} className={className} viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
      <path fillRule="evenodd" clipRule="evenodd" d="M15.1419 13.131H16.7399V11.631H15.1419V13.131ZM11.4069 13.131H13.0059V11.631H11.4069V13.131ZM7.67285 13.131H9.27185V11.631H7.67285V13.131ZM19.1079 5.11999C17.2729 3.28499 14.8319 2.27399 12.2319 2.27399C9.63285 2.27399 7.18985 3.28499 5.35485 5.12099C3.51485 6.95999 2.50285 9.40499 2.50485 12.004C2.50485 14.64 3.88885 17.152 4.39085 17.976L2.04785 21.712L2.96085 21.704C3.01885 21.704 8.77085 21.654 12.0209 21.724C12.0939 21.725 12.1659 21.726 12.2379 21.726C14.8339 21.726 17.2659 20.719 19.1079 18.876C22.8999 15.083 22.8999 8.91299 19.1079 5.11999Z" fill="currentColor" />
    </svg>

  );
}
