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

22 lines
488 B
Svelte
Raw Normal View History

2025-10-25 22:04:41 +02:00
<script lang="ts">
import { _ } from "svelte-i18n";
import PeonyIcon from "../icon/peony-icon.svelte";
2025-10-25 22:04:41 +02:00
const { hideName = false } = $props();
2025-10-25 22:04:41 +02:00
</script>
<div class="relative">
<PeonyIcon class="w-13 h-13 text-black" />
</div>
<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>