## Frollo Web UI

![npm bundle size](https://img.shields.io/bundlephobia/minzip/@frollo/frollo-web-ui) [![npm](https://img.shields.io/npm/v/@frollo/frollo-web-ui)](https://www.npmjs.com/package/@frollo/frollo-web-ui/v/latest)

### Usage

#### Installation
```bash
npm i @frollo/frollo-web-ui
or
yarn add @frollo/frollo-web-ui
```

#### Import entire library globally
```ts
import { createApp } from 'vue'
import App from './App.vue'
import FrolloWebUI from '@frollo/frollo-web-ui';

const app = createApp(App)
app.use(FrolloWebUI)
app.mount('#app')
```

#### Import components from the esm folder to enable tree-shaking
```ts
import { FwCard } from '@frollo/frollo-web-ui/esm';
```

Note: For local development please refer to the [general development readme](https://github.com/frollous/frollo-web-ui/blob/develop/development.md).