UNPKG

@stanfordspezi/spezi-web-design-system

Version:

Stanford Biodesign Digital Health Spezi Web Design System

10 lines (9 loc) 392 B
import { ReactNode } from 'react'; import { Notification as NotificationType } from './NotificationContext'; export interface NotificationProps { notification: NotificationType; children: ReactNode; className?: string; asChild?: boolean; } export declare const Notification: ({ notification, children, className, asChild, }: NotificationProps) => import("react").JSX.Element;