import React from "react"

import { IconProps } from "./types"

export default function XTwitter({
  height = 24,
  width = 24,
  color = "#A8ADB5",
}: IconProps) {
  return (
    <svg
      width={width}
      height={height}
      viewBox="0 0 24 24"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
    >
      <path
        d="M16.8311 4.4082H19.4072L13.7792 10.84L20.4001 19.5922H15.216L11.1555 14.284L6.50951 19.5922H3.93185L9.95159 12.7127L3.6001 4.4082H8.91585L12.5861 9.26007L16.8311 4.4082ZM15.927 18.0504H17.3544L8.14022 5.86898H6.60841L15.927 18.0504Z"
        fill={color}
      />
    </svg>
  )
}
