@stanfordspezi/spezi-web-design-system
Version:
Stanford Biodesign Digital Health Spezi Web Design System
13 lines (12 loc) • 434 B
TypeScript
import { ComponentProps } from 'react';
interface NotificationTitleProps extends ComponentProps<"div"> {
}
/**
* Title component for notification.
* Adjusts its styling based on notification read status from context.
*
* @example
* <NotificationTitle>New message received</NotificationTitle>
*/
export declare const NotificationTitle: ({ className, ...props }: NotificationTitleProps) => import("react").JSX.Element;
export {};