import React from 'react';
import { useTheme } from '../../context/MagicBellThemeContext.js';
/**
* Default MacigBell icon for the notification launcher/toggler.
*
* @example
*
*/
export default function BellIcon() {
const { icon: theme } = useTheme();
return (
);
}