mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-18 21:41:23 +02:00
- Add 'presi' to AppId type - Add Presi branding config (orange theme, presentation icon) - Add PresiLogo Svelte component - Export PresiLogo from logos index 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
13 lines
274 B
Svelte
13 lines
274 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="presi" {size} {color} class={className} />
|