mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-15 18:39:40 +02:00
- Add lightwrite to AppId type - Add lightwrite branding config (orange theme, music note icon) - Create LightWriteLogo.svelte component - Update login/register pages to use proper logo component - Fixes type-check errors in @lightwrite/web
13 lines
279 B
Svelte
13 lines
279 B
Svelte
<script lang="ts">
|
|
import AppLogo from '../AppLogo.svelte';
|
|
|
|
interface Props {
|
|
size?: number;
|
|
color?: string;
|
|
class?: string;
|
|
}
|
|
|
|
let { size = 55, color, class: className = '' }: Props = $props();
|
|
</script>
|
|
|
|
<AppLogo app="lightwrite" {size} {color} class={className} />
|