2
0
mirror of https://github.com/frappe/books.git synced 2025-01-14 03:23:36 +00:00
books/src/components/Indicator.vue
Faris Ansari 441ec973e2 Add SetupWizard page
- Add File Control
- Add Indicator and Button components
2018-06-11 15:16:25 +05:30

25 lines
398 B
Vue

<template>
<span :class="['indicator', 'indicator-' + color]"></span>
</template>
<script>
export default {
props: ['color']
}
</script>
<style lang="scss">
@import "~@/styles/variables";
.indicator {
display: inline-block;
width: 0.5rem;
height: 0.5rem;
background-color: $gray-400;
border-radius: 50%;
}
.indicator-blue {
background-color: $primary;
}
</style>