mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-15 19:39:40 +02:00
- Replace custom Icon.svelte component with phosphor-svelte library
- Remove iconPaths.ts with manually maintained SVG paths
- Update @manacore/shared-icons to re-export phosphor-svelte
- Migrate shared-ui Modal and ConfirmationModal components
- Migrate shared-theme-ui ThemeToggle and ThemeModeSelector
- Migrate all chat app components to use Phosphor Icons
- All apps now use consistent icon API: <IconName size={24} weight="bold" />
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
16 lines
404 B
TypeScript
16 lines
404 B
TypeScript
/**
|
|
* @manacore/shared-icons
|
|
*
|
|
* Phosphor Icons for all Manacore SvelteKit web apps
|
|
* https://phosphoricons.com
|
|
*
|
|
* Usage:
|
|
* import { House, User, Gear, Plus } from '@manacore/shared-icons';
|
|
*
|
|
* <House size={24} weight="bold" />
|
|
* <User size={20} weight="regular" class="text-blue-500" />
|
|
*
|
|
* Available weights: thin, light, regular, bold, fill, duotone
|
|
*/
|
|
|
|
export * from 'phosphor-svelte';
|