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