Skip to content

hijal/vue-crypto-icons-package

Repository files navigation

Feel Free to contribute

Usage example:

Install

npm

npm i vue-crypto-icons

Usage

<template>
  <div>
    <BTC size="50" color="yellow" />
    <ETH size="50" color="#B2A4FF" />
  </div>
</template>

<script>
import { BTC, ETH } from "vue-crypto-icons";

export default {
  ...
  components: {
    BTC, 
    ETH
  },
  ...
};
</script>