Components

Basic Button
TailwindCSS
ReactJS
Choose colors:
export default function BasicButton() {
  return (
    <div className=" h-screen w-screen flex items-center justify-center">
      <button className=" bg-[#111111] text-white py-5 px-24 rounded-full hover:opacity-60 transition duration-300 ease-in-out">
        Add To Bag
      </button>
    </div>
  );
}

Read-only
© 2023 TrexUI, Inc. All rights reserved.