@stanfordspezi/spezi-web-design-system
Version:
Stanford Biodesign Digital Health Spezi Web Design System
16 lines (15 loc) • 503 B
TypeScript
import { ComponentProps } from 'react';
interface NotificationContentContainerProps extends ComponentProps<"div"> {
}
/**
* Container for Notification's main content.
*
* @example
* ```ts
* <NotificationContentContainer>
* <NotificationMessage>You received a new message!</NotificationMessage>
* </NotificationContentContainer>
* ```
*/
export declare const NotificationContentContainer: ({ className, ...props }: NotificationContentContainerProps) => import("react").JSX.Element;
export {};