mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-24 08:53:00 +08:00
16 lines
No EOL
239 B
Vue
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> |