UNPKG

@stanfordspezi/spezi-web-design-system

Version:

Stanford Biodesign Digital Health Spezi Web Design System

14 lines (13 loc) 487 B
import { ComponentProps } from 'react'; interface NotificationContentContainerProps extends ComponentProps<"div"> { } /** * Container for Notification's main content. * * @example * <NotificationContentContainer> * <NotificationMessage>You received a new message!</NotificationMessage> * </NotificationContentContainer> */ export declare const NotificationContentContainer: ({ className, ...props }: NotificationContentContainerProps) => import("react").JSX.Element; export {};