You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
559 B
29 lines
559 B
<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>
|