UNPKG

air-command-ui-library

Version:

A React component library for Air Command System with Storybook

10 lines (9 loc) 214 B
import React from 'react'; interface ToastProps { type: 'success' | 'error'; title: string; message: string; onClose?: () => void; } declare const Toast: React.FC<ToastProps>; export default Toast;