AddIcon.vue 578 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <svg :width="iconSize" :height="iconSize" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
  3. <rect x="7" y="1" width="1.8" height="14" rx="0.9"
  4. fill="var(--icon-color)"/>
  5. <rect x="15" y="7" width="1.8" height="14" rx="0.9" transform="rotate(90 15 7)"
  6. fill="var(--icon-color)"/>
  7. </svg>
  8. </template>
  9. <script setup lang="ts">
  10. const props = defineProps({
  11. iconSize:{
  12. type:Number,
  13. default:16
  14. }
  15. })
  16. </script>
  17. <style lang="scss" scoped>
  18. svg{
  19. --icon-color : #2E64FA;
  20. }
  21. </style>