Files
formbricks/apps/web/modules/email/components/email-button.tsx
T
Piyush Gupta 1af1a92fec feat: granular team roles (#3975)
Co-authored-by: Matthias Nannt <mail@matthiasnannt.com>
Co-authored-by: Dhruwang <dhruwangjariwala18@gmail.com>
Co-authored-by: Johannes <72809645+jobenjada@users.noreply.github.com>
Co-authored-by: Johannes <johannes@formbricks.com>
2024-11-08 06:03:14 +00:00

18 lines
380 B
TypeScript

import { Button } from "@react-email/components";
import React from "react";
interface EmailButtonProps {
label: string;
href: string;
}
export function EmailButton({ label, href }: EmailButtonProps): React.JSX.Element {
return (
<Button className="rounded-md bg-black px-6 py-3 text-white" href={href}>
{label}
</Button>
);
}
export default EmailButton;