managarten/packages/shared-icons/src/index.ts
Till-JS b97149ac12 feat(icons): migrate to phosphor-svelte for all icon usage
- 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>
2025-11-29 07:02:59 +01:00

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';