Files
resend__react-email/apps/docs/components/text.mdx
2026-04-13 18:24:12 -03:00

44 lines
638 B
Plaintext

---
title: "Text"
sidebarTitle: "Text"
description: "A block of text separated by blank spaces."
"og:image": "https://react.email/static/covers/text.png"
icon: "text-size"
---
import Support from '/snippets/support.mdx'
## Install
Install component from your command line.
<CodeGroup>
```sh npm
npm install react-email -E
```
```sh yarn
yarn add react-email -E
```
```sh pnpm
pnpm add react-email -E
```
</CodeGroup>
## Getting started
Add the component to your email template. Include styles where needed.
```jsx
import { Text } from "react-email";
const Email = () => {
return <Text>Lorem ipsum</Text>;
};
```
<Support/>