Skip to content

Instantly share code, notes, and snippets.

@Chuloo
Created March 17, 2023 20:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Chuloo/c21b7c13d30abe7ccd36e71d4e75bc16 to your computer and use it in GitHub Desktop.
Save Chuloo/c21b7c13d30abe7ccd36e71d4e75bc16 to your computer and use it in GitHub Desktop.
CTA Button Component
export function CTAButton({
title,
type = "primary",
}: {
title: string;
type?: "primary" | "secondary";
}) {
return (
<>
<button
className={`focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-[#082491] ${
type == "primary"
? "bg-[#082491] text-white"
: "bg-transparent text-[#082491]"
} transition duration-150 ease-in-out mx-4 lg:text-xl lg:font-bold rounded px-4 sm:px-10 border border-[#082491] py-2 sm:py-4 text-sm`}
>
{title}
</button>
</>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment