TwitchClone / src / components / buttons / sideExpand / index.tsx
index.tsx
Raw
import React from "react";

const SideExpand = () => {
  return (
    <svg
      width="1.563rem"
      height="1.563rem"
      version="1.1"
      viewBox="0 0 20 20"
      x="0px"
      y="0px"
      fill="rgb(239, 239, 241)"
      className=" my-1 w-4 opacity-50 2xl:w-8"
    >
      <g>
        <path d="M4 16V4H2v12h2zM13 15l-1.5-1.5L14 11H6V9h8l-2.5-2.5L13 5l5 5-5 5z"></path>
      </g>
    </svg>
  );
};

export default SideExpand;