@react-email/text
Version:
A block of text separated by blank spaces
8 lines (7 loc) • 408 B
TypeScript
import * as React from "react";
//#region src/text.d.ts
type TextProps = Readonly<React.ComponentPropsWithoutRef<'p'>>;
declare const Text: React.ForwardRefExoticComponent<Readonly<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, "ref">> & React.RefAttributes<HTMLParagraphElement>>;
//#endregion
export { Text, TextProps };
//# sourceMappingURL=index.d.ts.map