Usage example:
npm i vue-crypto-icons
<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>