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.

30 lines
538 B

  1. <template>
  2. <svg
  3. xmlns="http://www.w3.org/2000/svg"
  4. class="icon icon-tabler icon-tabler-chevron-down"
  5. width="60"
  6. height="60"
  7. viewBox="0 0 24 24"
  8. stroke-width="2"
  9. stroke="#bbbbbb"
  10. fill="none"
  11. stroke-linecap="round"
  12. stroke-linejoin="round"
  13. >
  14. <path stroke="none" d="M0 0h24v24H0z" fill="none" />
  15. <polyline points="6 9 12 15 18 9" fill="none" />
  16. </svg>
  17. </template>
  18. <script>
  19. export default {
  20. }
  21. </script>
  22. <style scoped>
  23. svg {
  24. max-height: 3.2rem;
  25. max-width: 3.2rem;
  26. }
  27. </style>