mirror of
https://github.com/tenrok/vue-select.git
synced 2026-05-29 05:14:04 +03:00
24 lines
385 B
Vue
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>
|