# `<Label/>`

General all purpose label 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 `<Label>` component with appropriate appearance:

```js
import Label from 'wix-style-react/Label';

export default () =>
  <div>
    <Label>Label</Label>
  </div>;
```
