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

const FollowArrows = () => {
  return (
    <svg width="2rem" height="2rem" viewBox="0 0 20 20" fill="currentColor">
      <path d="M11 6 7 2 3 6l1.5 1.5L6 6v6h2V6l1.5 1.5L11 6Zm6 8-4 4-4-4 1.5-1.5L12 14V8h2v6l1.5-1.5L17 14Z"></path>
    </svg>
  );
};

export default FollowArrows;