Files
portabase/emails/Button.tsx
T

7 lines
361 B
TypeScript
Raw Normal View History

2025-05-16 15:54:17 +02:00
import { Button as ReactEmailButton } from "@react-email/components";
import { ComponentPropsWithoutRef } from "react";
export const Button = (props: ComponentPropsWithoutRef<typeof ReactEmailButton>) => {
2025-05-16 15:54:17 +02:00
return <ReactEmailButton className="block w-52 rounded bg-blue-600 py-3.5 text-center text-sm font-normal text-white no-underline " {...props} />;
};