UNPKG

@stanfordspezi/spezi-web-design-system

Version:

Stanford Biodesign Digital Health Spezi Web Design System

15 lines (14 loc) 450 B
import { ComponentProps } from 'react'; interface NotificationTitleProps extends ComponentProps<"div"> { } /** * Title component for notification. * Adjusts its styling based on notification read status from context. * * @example * ```ts * <NotificationTitle>New message received</NotificationTitle> * ``` */ export declare const NotificationTitle: ({ className, ...props }: NotificationTitleProps) => import("react").JSX.Element; export {};