UNPKG

@stanfordspezi/spezi-web-design-system

Version:

Stanford Biodesign Digital Health Spezi Web Design System

12 lines (11 loc) 522 B
import { ComponentProps } from 'react'; interface NotificationActionsProps extends ComponentProps<"div"> { } /** * Container for additional notification actions. * Some actions might add call to actions about notified, like "Delete", "Mark as read" and others. * * It captures and prevents propagation of all click events to avoid conflicts with parent Link elements. */ export declare const NotificationActions: ({ onClick, className, ...props }: NotificationActionsProps) => import("react").JSX.Element; export {};