1.0.5 • Published 3 years ago

@brewry/icons v1.0.5

Weekly downloads
1
License
MIT
Repository
github
Last release
3 years ago

@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