fosrl.pangolin/server/emails/templates/components/ButtonLink.tsx
2025-07-13 21:57:24 -07:00

24 lines
585 B
TypeScript

import React from "react";
export default function ButtonLink({
href,
children,
className = ""
}: {
href: string;
children: React.ReactNode;
className?: string;
}) {
return (
<a
href={href}
className={`inline-block bg-primary hover:bg-primary/90 text-white font-semibold px-8 py-3 rounded-lg text-center no-underline transition-colors ${className}`}
style={{
backgroundColor: "#F97316",
textDecoration: "none"
}}
>
{children}
</a>
);
}