vp-social-link.vue 455 B

1234567891011121314151617181920212223
  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 :href="link" :title="text" target="_blank" rel="noreferrer noopener" class="social-link">
  11. <ElIcon v-if="icon" :size="24">
  12. <component :is="icon" />
  13. </ElIcon>
  14. </a>
  15. </template>
  16. <style scoped lang="scss">
  17. .social-link {
  18. color: var(--text-color);
  19. }
  20. </style>