# bpk-component-paragraph

> Backpack paragraph component.

## Installation

```sh
npm install bpk-component-paragraph --save-dev
```

## Usage

```js
import React from 'react';
import BpkParagraph from 'bpk-component-paragraph';

export default () => (
  <BpkParagraph>My paragraph content.</BpkParagraph>
)
```

## Props

| Property  | PropType | Required | Default Value |
| --------- | -------- | -------- | ------------- |
| children  | node     | true     | -             |
| className | string   | false    | null          |
