import { IconProps } from "./types"

export default function MorphoIcon({
  width = 14,
  height = 14,
  color = "#A8ADB5",
}: IconProps) {
  return (
    <svg
      xmlns="http://www.w3.org/2000/svg"
      width={width}
      height={height}
      viewBox="0 0 28 28"
      fill="none"
    >
      <rect
        x={2}
        y={2}
        width={24}
        height={24}
        rx={12}
        fill="url(#paint0_linear_45685_9511)"
      />
      <rect
        x={1}
        y={1}
        width={26}
        height={26}
        rx={13}
        stroke="#236FFE"
        strokeOpacity="0.24"
        strokeWidth={2}
      />
      <path
        d="M8.86662 16.249V19.8969C8.86662 20.1215 9.05668 20.2147 9.1158 20.2358C9.17492 20.2613 9.37343 20.3163 9.5508 20.1511L12.3104 17.4991C12.5454 17.2733 12.7723 17.0359 12.9427 16.7582C13.0229 16.6276 13.0562 16.5541 13.0562 16.5541C13.2251 16.2109 13.2251 15.8804 13.0604 15.5499C12.8155 15.0585 12.1904 14.5585 11.2485 14.084L9.6395 14.9822C9.16227 15.2533 8.86662 15.7321 8.86662 16.249Z"
        fill="#7188B3"
      />
      <path
        d="M7.27979 8.13492V11.9608C7.27979 12.4395 7.60076 12.8632 8.05689 12.9988C9.61107 13.4479 12.3182 14.4139 12.9729 15.8332C13.0573 16.0196 13.108 16.2018 13.125 16.3925C13.5599 15.6002 13.7584 14.6893 13.6655 13.7657C13.5388 12.4565 12.8461 11.2659 11.765 10.5075L7.90907 7.80869C7.84149 7.75784 7.76125 7.73242 7.68101 7.73242C7.61343 7.73242 7.5543 7.74513 7.49095 7.77903C7.36425 7.85105 7.27979 7.9824 7.27979 8.13492Z"
        fill="white"
      />
      <path
        d="M19.1307 16.249V19.8969C19.1307 20.1215 18.9407 20.2147 18.8815 20.2358C18.8224 20.2613 18.6238 20.3163 18.4465 20.1511L15.6226 17.4374C15.4304 17.2527 15.2469 17.0573 15.1021 16.8334C14.9874 16.6562 14.9412 16.5541 14.9412 16.5541C14.7722 16.2109 14.7722 15.8804 14.9368 15.5499C15.1818 15.0585 15.8069 14.5585 16.7486 14.084L18.3578 14.9822C18.8393 15.2533 19.1307 15.7321 19.1307 16.249Z"
        fill="#7188B3"
      />
      <path
        d="M20.7199 8.13492V11.9608C20.7199 12.4395 20.3988 12.8632 19.9426 12.9988C18.3885 13.4479 15.6814 14.4139 15.0268 15.8332C14.9422 16.0196 14.8915 16.2018 14.8747 16.3925C14.4397 15.6002 14.2412 14.6893 14.3341 13.7656C14.4607 12.4565 15.1534 11.2659 16.2346 10.5075L20.0906 7.80868C20.1581 7.75784 20.2383 7.73242 20.3186 7.73242C20.3861 7.73242 20.4453 7.74513 20.5085 7.77903C20.6353 7.85105 20.7199 7.9824 20.7199 8.13492Z"
        fill="white"
      />
      <defs>
        <linearGradient
          id="paint0_linear_45685_9511"
          x1={14}
          y1={2}
          x2={14}
          y2={26}
          gradientUnits="userSpaceOnUse"
        >
          <stop stopColor="#236FFE" />
          <stop offset={1} stopColor="#024AD2" />
        </linearGradient>
      </defs>
    </svg>
  )
}
