TwitchClone / src / components / svgs / reply / index.tsx
index.tsx
Raw
import React from "react";

const ReplySvg = () => {
  return (
    <svg
      className="h-4 w-4 fill-white transition-colors duration-200
      ease-in group-hover:text-gray-300"
      xmlns="http://www.w3.org/2000/svg"
      viewBox="0 0 24 24"
    >
      <title>reply</title>
      <path d="M10,9V5L3,12L10,19V14.9C15,14.9 18.5,16.5 21,20C20,15 17,10 10,9Z" />
    </svg>
  );
};

export default ReplySvg;