Files
medreport_mrb2b/packages/email-templates/src/components/cta-button.tsx
2025-06-08 16:18:30 +03:00

17 lines
351 B
TypeScript

import { Button } from '@react-email/components';
export function CtaButton(
props: React.PropsWithChildren<{
href: string;
}>,
) {
return (
<Button
className="w-full rounded bg-[#000000] py-3 text-center text-[16px] font-semibold text-white no-underline"
href={props.href}
>
{props.children}
</Button>
);
}