/** @jsxImportSource @emotion/react */ import { css } from '@emotion/react'; import { INotification } from '@magicbell/react-headless'; import { useTheme } from '../../context/MagicBellThemeContext.js'; export interface Props { notification: INotification; } /** * Component that renders the title of a notification. * * @example * */ export default function NotificationTitle({ notification }: Props) { const { title } = notification; const { notification: { default: { title: theme }, }, } = useTheme(); return (

{title}

); }