design-react-kit
Version:
Componenti React per Bootstrap 5
7 lines (6 loc) • 300 B
TypeScript
import React, { CSSProperties } from 'react';
import { NotificationCommonProps } from './types';
export interface NotificationManagerProps extends NotificationCommonProps {
style?: CSSProperties;
}
export declare const NotificationManager: (props: NotificationManagerProps) => React.JSX.Element;