TwitchClone / src / components / navbar / primeDropdown / primeLootButton / index.tsx
index.tsx
Raw
import React from "react";

const PrimeLootButton = () => {
  return (
    <div className="flex w-full flex-col py-2">
      <button className="flex items-center justify-center rounded-md bg-violet-600 px-2 py-1 text-center text-slate-200 ">
        <svg
          xmlns="http://www.w3.org/2000/svg"
          viewBox="0 0 24 24"
          className="w-[1.7rem] px-1"
          fill="#FFFFFF"
        >
          <title>crown</title>
          <path d="M5 16L3 5L8.5 10L12 4L15.5 10L21 5L19 16H5M19 19C19 19.6 18.6 20 18 20H6C5.4 20 5 19.6 5 19V18H19V19Z" />
        </svg>
        <p className="whitespace-nowrap text-[0.67rem] font-bold leading-4">
          Visit the Prime Gaming Loot Page
        </p>
      </button>
    </div>
  );
};

export default PrimeLootButton;