## Air is a design system built using Modulz

### Using this package

#### Step 1: Install Air from npm

Install @crswll/air using your package manager:
```bash
yarn add @crswll/air
```

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

Your components are ready to use! All components are imported directory from @crswll/air:
```js
import { Card, Input, Box, Container } from '@crswll/air';
```
  
#### 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 '@crswll/air';

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