# [vue-lds](https://linkoff.github.io/vue-lds/)

Salesforce's Lightning Design System for Vue.js.

## Installation

### npm

```sh
npm i vue-lds
```

### Yarn

```sh
yarn add vue-lds
```

## Usage

```js
import Vue from 'vue'
import VueLDS from 'vue-lds'

Vue.use(VueLDS)

new Vue({
  el: '#app',
  template: '<vlds-button type="neutral" icon="utility/edit">Button</vlds-button>',
})
```
