mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-18 01:49:40 +02:00
Add new Inventory management app with: - Backend NestJS setup with Drizzle schema for items, categories, locations - Web SvelteKit app with item management UI - Shared branding config (logo, icon, colors) - Storage bucket configuration 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
13 lines
278 B
Svelte
13 lines
278 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="inventory" {size} {color} class={className} />
|