2
0
mirror of https://github.com/tenrok/vue-select.git synced 2026-05-29 05:14:04 +03:00
Files
vue-select/docs/layouts/ExternalLink.vue
Jeff Sagal ae2eb99f86 wip
2021-07-28 15:56:54 -07:00

24 lines
385 B
Vue

<template>
<a :href="href" class="flex items-center">
<slot></slot>
<img
src="~assets/svg/ExternalLink.svg?data"
aria-hidden="true"
class="w-5 h-5 opacity-50"
alt="External Link Icon"
/>
</a>
</template>
<script>
export default {
name: "ExternalLink",
props: {
href: {
type: String,
required: true,
},
},
};
</script>