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

const CollapseChatSvg = () => {
  return (
    <svg
      width="100%"
      height="100%"
      version="1.1"
      viewBox="0 0 20 20"
      x="0px"
      y="0px"
      className=" w-4 fill-white"
    >
      <g>
        <path d="M4 16V4H2v12h2zM13 15l-1.5-1.5L14 11H6V9h8l-2.5-2.5L13 5l5 5-5 5z"></path>
      </g>
    </svg>
  );
};

export default CollapseChatSvg;