Use icon components from @jis3r/icons
mainThe @jis3r/icons package provides a collection of Svelte icon components. Each icon is exported as a named component from the main entrypoint. You can import any icon by its PascalCase name and use it directly within your Svelte application.
Common icon names include:
- Navigation:
ArrowUp,ChevronDown,MoveRight,Maximize - UI Elements:
Settings,Search,Plus,Trash,Bell - Status/Alerts:
AlertCircle,ShieldCheck,BatteryLow,Check - Media:
Play,Volume2,Mic,Music
Note: Since these are Svelte components, they can be used in any Svelte project that has the package installed.
<script>
import { Search, Settings, Bell } from '@jis3r/icons';
</script>
<Search />
<Settings />
<Bell />