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.

28 lines
559 B

2 years ago
  1. <template>
  2. <span>
  3. <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>
  4. </span>
  5. </template>
  6. <script>
  7. export default {
  8. name: "TwoDots",
  9. props:{
  10. height: {
  11. type: String,
  12. default: "16px"
  13. },
  14. width: {
  15. type: String,
  16. default: "6px"
  17. },
  18. color: {
  19. type: String,
  20. default: "#EE9546"
  21. }
  22. },
  23. }
  24. </script>
  25. <style scoped>
  26. </style>