> For the complete documentation index, see [llms.txt](https://apcom.gitbook.io/altrone-ui/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://apcom.gitbook.io/altrone-ui/components/typography/paragraph.md).

# Paragraph

This component adds `<p>` tag to the page with the text you passed in the `children` property.

```tsx
import { Paragraph } from 'altrone-ui';

return <Paragraph>This is your text!</Paragraph>;
```

## Properties

| Property                                              | Type        | Description       |
| ----------------------------------------------------- | ----------- | ----------------- |
| **`children`**<mark style="color:red;">**`*`**</mark> | `ReactNode` | Children elements |
| **`className`**                                       | `string`    | Custom CSS class  |

## History

* **`Altrone 1.0`:** initial release
