## Livepeer UI is a design system built using Modulz

### Using this package

#### Step 1: Install Livepeer UI from npm

Install @livepeer/ui using your package manager:
```bash
yarn add @livepeer/ui
```

#### Step 2: Import & use your components

Your components are ready to use! All components are imported directory from @livepeer/ui:
```js
import { Card, Input, Box, Container } from '@livepeer/ui';
```
  
#### Step 3: Wrap your app in `DesignSystemProvider`
  
To access the default theme, you must import and wrap your app with the `DesignSystemProvider`:

```js
import { DesignSystemProvider } from '@livepeer/ui';

const App = () => <DesignSystemProvider>Hey there👋</DesignSystemProvider>;
```
