felicity-lims/webapp/components/logo/Logo.vue
2024-11-18 10:58:31 +02:00

16 lines
No EOL
239 B
Vue

<template>
<img
src="/webapp/assets/logo-white.svg"
:class="styling"
alt="Felicity LIMS LOGO"
/>
</template>
<script setup lang="ts">
defineProps({
styling: {
type: String,
default: "h-12 w-12",
}
});
</script>