@stanfordspezi/spezi-web-design-system
Version:
Stanford Biodesign Digital Health Spezi Web Design System
17 lines (16 loc) • 531 B
TypeScript
import { ComponentProps } from 'react';
interface NotificationHeaderProps extends ComponentProps<"div"> {
}
/**
* Header component for notifications that provides a container for title, time and other elements.
*
* @example
* ```ts
* <NotificationHeader>
* <NotificationTitle>New Message</NotificationTitle>
* <NotificationTime time={new Date()} />
* </NotificationHeader>
* ```
*/
export declare const NotificationHeader: ({ className, ...props }: NotificationHeaderProps) => import("react").JSX.Element;
export {};