mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
7 lines
303 B
TypeScript
7 lines
303 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} />;
|
|
};
|