vp-social-link.vue 452 B

1234567891011121314151617181920212223242526272829
  1. <script setup lang="ts">
  2. import type { Component } from 'vue'
  3. defineProps<{
  4. icon: Component
  5. link: string
  6. text: string
  7. }>()
  8. </script>
  9. <template>
  10. <a
  11. :href="link"
  12. :title="text"
  13. target="_blank"
  14. rel="noreferrer noopener"
  15. class="social-link"
  16. >
  17. <ElIcon v-if="icon" :size="24">
  18. <component :is="icon" />
  19. </ElIcon>
  20. </a>
  21. </template>
  22. <style scoped lang="scss">
  23. .social-link {
  24. color: var(--text-color);
  25. }
  26. </style>