mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
7 lines
361 B
TypeScript
7 lines
361 B
TypeScript
import { Button as ReactEmailButton } from "@react-email/components";
|
|
import { ComponentPropsWithoutRef } from "react";
|
|
|
|
export const Button = (props: ComponentPropsWithoutRef<typeof ReactEmailButton>) => {
|
|
return <ReactEmailButton className="block w-52 rounded bg-blue-600 py-3.5 text-center text-sm font-normal text-white no-underline " {...props} />;
|
|
};
|