@brewry/icons

Icons(feather-icons) used for the Brewry UI Kit.

Usage no npm install needed!

<script type="module">
  import brewryIcons from 'https://cdn.skypack.dev/@brewry/icons';
</script>

README

@brewry/icons

Icons(feather-icons) used for the Brewry UI Kit.

@brewry/icons is a high quality icon library, all components are displayed by svg.


Usage

  1. Install: yarn add @brewry/icons.

  2. Global import

    import { install } from '@brewry/icons'
    import Vue from 'vue'
    
    install(Vue)
    
  3. Per component

<template>
  <div>
    <AirplayIcon size="24px" color="#000000"></AirplayIcon>
  </div>
</template>
<script>
import { AirplayIcon } from '@brewry/icons';

export default {
  components: {
    AirplayIcon
  }
}
</script>

See