@stanfordspezi/spezi-web-design-system
Version:
Stanford Biodesign Digital Health Spezi Web Design System
10 lines (9 loc) • 383 B
TypeScript
import { NotificationRootProps } from './NotificationRoot';
interface NotificationLinkProps extends Omit<NotificationRootProps, "asChild"> {
href: string;
}
/**
* Composes {@link NotificationRoot} to provide a linkable notification.
*/
export declare const NotificationLink: ({ notification, children, href, }: NotificationLinkProps) => import("react").JSX.Element;
export {};