UNPKG

@magicbell/magicbell-react

Version:

React components for building a notification inbox for your app

12 lines (11 loc) 384 B
import { INotification } from '@magicbell/react-headless'; export interface Props { notification: INotification; } /** * Component that renders a dot with style based on notification state * * @example * <NotificationState notification={notification} /> */ export default function NotificationState({ notification }: Props): import("@emotion/react/jsx-runtime").JSX.Element;