mirror of
https://github.com/NotXia/notxia.github.io.git
synced 2025-12-14 10:51:52 +01:00
19 lines
415 B
Vue
19 lines
415 B
Vue
<template>
|
|
|
|
<div class="inline-block">
|
|
<div class="flex items-center">
|
|
<img :src="props.logo" alt="" :class="`h-5 mr-1 ${props.needInvert ? 'dark:invert' : ''}`">
|
|
{{ props.language }}
|
|
</div>
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
<script setup lang="ts">
|
|
const props = defineProps({
|
|
language: String,
|
|
logo: String,
|
|
needInvert: Boolean
|
|
});
|
|
</script> |