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.

31 lines
560 B

  1. <template>
  2. <svg
  3. xmlns="http://www.w3.org/2000/svg"
  4. class="icon icon-tabler icon-tabler-x"
  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. <line x1="18" y1="6" x2="6" y2="18" />
  16. <line x1="6" y1="6" x2="18" y2="18" />
  17. </svg>
  18. </template>
  19. <script>
  20. export default {
  21. }
  22. </script>
  23. <style scoped>
  24. svg {
  25. max-height: 3.2rem;
  26. max-width: 3.2rem;
  27. }
  28. </style>