--- title: Paragraph description: Use this to display a block of text similar to the `
` tag in HTML. api_version: 2024-07 api_name: admin-extensions source_url: html: >- https://shopify.dev/docs/api/admin-extensions/2024-07/components/titles-and-text/paragraph md: >- https://shopify.dev/docs/api/admin-extensions/2024-07/components/titles-and-text/paragraph.md --- # Paragraph Use this to display a block of text similar to the `
` tag in HTML.
## ParagraphProps
* children
any
* fontSize
SizeScale
Size of the typography's font.
* fontStyle
FontStyle
Use to emphasize a word or a group of words.
* fontWeight
FontWeight
Sets the weight of the font.
* id
string
A unique identifier for the element.
* textOverflow
TextOverflow
Set how hidden overflow content is signaled to users.
### SizeScale
```ts
'small-300' | 'small-200' | 'small-100' | 'base' | 'large-100' | 'large-200' | 'large-300'
```
### FontStyle
```ts
'italic' | 'normal'
```
### FontWeight
```ts
'light-300' | 'light-200' | 'light-100' | 'light' | 'base' | 'normal' | 'bold' | 'bold-100' | 'bold-200' | 'bold-300'
```
### TextOverflow
```ts
'ellipsis'
```
Examples
## Preview

### Examples
* #### Simple Paragraph example
##### React
```tsx
import {
render,
BlockStack,
Paragraph,
} from '@shopify/ui-extensions-react/admin';
render('Playground', () =>