Skip to content

@magicbell/magicbell-react@10.6.0

Compare
Choose a tag to compare
@github-actions github-actions released this 19 Apr 07:38
· 626 commits to main since this release
bd20d65

Minor Changes

  • #88 7f9ecbc Thanks @TD-4242! - feat: support css variables as theme color value

    import MagicBell, { NotificationInbox } from '@magicbell/magicbell-react';
    
    const customTheme = {
      icon: {
        borderColor: 'var(--magicbell-icon-border-color)',
      },
    };
    
    <MagicBell theme={customTheme} apiKey={...} userEmail={...}>
        {() => <NotificationInbox height={500} />}
    </MagicBell>