Spellbook inspired tab navigation with book cover and pages.
npx chaos add spellbook-tabsimport { SpellbookTabs } from '@oalacea/chaosui/navigation/spellbook-tabs';
const schools = [
{ id: 'fire', name: 'Fire', icon: '🔥' },
{ id: 'ice', name: 'Ice', icon: '❄️' },
{ id: 'nature', name: 'Nature', icon: '🌿' },
];
<SpellbookTabs spellSchools={schools} activeTab="fire" onChange={setTab} />