mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
13 lines
350 B
TypeScript
13 lines
350 B
TypeScript
import {
|
|
Text as ReactEmailText
|
|
} from "@react-email/components";
|
|
import {ComponentPropsWithoutRef} from "react";
|
|
|
|
export const Text = (props: ComponentPropsWithoutRef<typeof ReactEmailText>) => {
|
|
return (
|
|
<ReactEmailText
|
|
className="text-base font-light leading-8 text-green-800 "
|
|
{...props}
|
|
/>
|
|
)
|
|
} |