Files
sexy/packages/frontend/src/lib/components/logo/logo.svelte

22 lines
480 B
Svelte
Raw Normal View History

2025-10-25 22:04:41 +02:00
<script lang="ts">
import { _ } from "svelte-i18n";
2026-03-06 19:25:07 +01:00
import SexyIcon from "../icon/icon.svelte";
2025-10-25 22:04:41 +02:00
const { hideName = false } = $props();
2025-10-25 22:04:41 +02:00
</script>
2026-03-06 19:25:07 +01:00
<div class="relative">
<SexyIcon class="w-8 h-8 text-primary" />
</div>
2025-10-25 22:04:41 +02:00
<span
class={`logo text-3xl text-foreground opacity-90 tracking-wide font-extrabold drop-shadow-x ${hideName ? "hidden sm:inline-block" : ""}`}
>
{$_("brand.name")}
2025-10-25 22:04:41 +02:00
</span>
<style>
.logo {
font-family: "Dancing Script", cursive;
2025-10-25 22:04:41 +02:00
}
</style>