# `<Text/>`

General text component with Wix styling.

## Usage

1. Load Wix fonts from CDN:

```html
<link rel="stylesheet" href="//static.parastorage.com/services/third-party/fonts/Helvetica/fontFace.css">
```

2. Use `<Text>` component with appropriate appearance:

```js
import {Text} from 'wix-ui-backoffice/Text';

const Component = () =>
  <div>
    <Text>Some Text</Text>
  </div>;
```
