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