<template>
<span>
  <unicon name="circle" :width="width" :height="height" :fill="color" icon-style="monochrome" class="mr-2"></unicon><unicon name="circle" :width="width" :height="height" :fill="color" icon-style="monochrome" ></unicon>
</span>
</template>

<script>
export default {
  name: "TwoDots",
  props:{
    height: {
        type: String,
        default: "16px"
      },
    width: {
        type: String,
        default: "6px"
      },
    color: {
        type: String,
        default: "#EE9546"
    }
  },
}
</script>

<style scoped>

</style>