Spaces:
Running
Running
File size: 342 Bytes
fa48522 612f16b 48059af 612f16b 67577d7 a1a6daf fa48522 7bf1507 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | <script lang="ts">
import { usePublicConfig } from "$lib/utils/PublicConfig.svelte";
const publicConfig = usePublicConfig();
interface Props {
classNames?: string;
}
let { classNames = "" }: Props = $props();
</script>
<img
class={classNames}
alt="{publicConfig.PUBLIC_APP_NAME} logo"
src="{publicConfig.assetPath}/logo.svg"
/>
|