wix-style-react
Version:
wix-style-react
23 lines (15 loc) • 402 B
Markdown
General all purpose label component with Wix styling.
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>;
```