0.3.1 • Published 1 year ago

vue-progress-icon v0.3.1

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

Vue ProgressIcon component

Easy progress display with clipping overlay and material/fa icons.

Examples

Installation

npm i https://github.com/itanka9/vue-progress-icon.git

Usage

<script>
import { ProgressIcon } from "vue-progress-icon";

export default {
  components: { ProgressIcon },
};
</script>

<template>
  <progress-icon :progress="42">
    <i class="fas fa-battery-full" />
  </progress-icon>
</template>