vue-website/components/Social.vue
2024-07-18 14:43:01 +10:00

24 lines
No EOL
281 B
Vue

<script setup>
const props = defineProps({
src: String,
href: String,
});
</script>
<template>
<a :href="props.href" class="icon2">
<img :src="props.src" class="icon" />
</a>
</template>
<style scoped>
.icon {
width: 48px;
}
.icon2{
width: 48px;
}
</style>