import { IconProps } from "./types"

export default function SendIcon({
  width = 20,
  height = 20,
  color = "#6D7178",
}: IconProps) {
  return (
    <svg
      xmlns="http://www.w3.org/2000/svg"
      width={width}
      height={height}
      viewBox="0 0 20 20"
      fill="none"
    >
      <g clipPath="url(#clip0_45695_7892)">
        <path
          d="M3.34175 5.025L9.60008 7.70833L3.33341 6.875L3.34175 5.025ZM9.59175 12.2917L3.33341 14.975V13.125L9.59175 12.2917ZM1.67508 2.5L1.66675 8.33333L14.1667 10L1.66675 11.6667L1.67508 17.5L19.1667 10L1.67508 2.5Z"
          fill={color}
        />
      </g>
      <defs>
        <clipPath id="clip0_45695_7892">
          <rect width={20} height={20} fill="white" />
        </clipPath>
      </defs>
    </svg>
  )
}
