import React from "react"
import { IconProps } from "./types"

export default function BrahmaSmallLogo({
  width = 28,
  height = 28,
}: IconProps) {
  return (
    <svg
      xmlns="http://www.w3.org/2000/svg"
      width={width}
      height={height}
      viewBox="0 0 28 28"
      fill="none"
    >
      <path
        d="M5.5207 16.117C3.17423 19.7596 2.35173 22.9441 3.70114 24.2936C5.74778 26.3403 12.0156 23.3906 17.7007 17.7054C18.263 17.143 18.7986 16.575 19.3052 16.006C19.5336 16.3787 19.7329 16.7398 19.9006 17.0846C19.8948 17.091 19.889 17.0974 19.8832 17.1038C20.5562 18.5054 20.7018 19.6316 20.1635 20.172L20.1678 20.1763C19.0052 21.339 17.5965 22.1053 16.1093 22.4754C19.7512 24.8213 22.935 25.6434 24.2842 24.2941C24.3 24.2784 24.3154 24.2624 24.3306 24.2462L24.377 24.2926C25.9217 22.6477 24.4315 18.4511 20.9809 13.9858C24.4275 9.50778 25.8931 5.30971 24.2888 3.70539C22.9396 2.35611 19.7558 3.17826 16.1138 5.52411C17.601 5.89422 19.0098 6.66059 20.1725 7.82323L20.1702 7.82559C20.8422 8.49766 20.4527 10.0794 19.3037 11.9708C18.8077 11.4153 18.2841 10.8609 17.7352 10.3119C14.0467 6.62339 10.1133 4.08437 7.24249 3.31004C5.6738 2.88308 4.42087 2.98165 3.69658 3.70595C2.34718 5.05539 3.16966 8.23983 5.51609 11.8824C5.88616 10.3951 6.65253 8.98614 7.81521 7.82343L7.81658 7.8248C7.83209 7.80935 7.84808 7.79447 7.86455 7.78014L7.88081 7.7964C8.50806 7.24547 9.82992 7.512 11.4375 8.39004C12.8419 9.16144 14.4622 10.3978 16.0264 11.962C16.7041 12.6397 17.3202 13.3279 17.8636 14.0045C17.3221 14.6779 16.7088 15.3627 16.0344 16.037C12.6249 19.4466 8.9486 21.2983 7.82319 20.1728L7.81986 20.1761C6.65715 19.0134 5.89076 17.6044 5.5207 16.117Z"
        fill="white"
      />
    </svg>
  )
}
