@project44-manifest/react
Version:
Manifest Design System react components
17 lines (14 loc) • 310 B
text/typescript
import type { CSS } from '@project44-manifest/react-styles';
export type ToasterElement = 'div';
export interface ToasterProps {
/**
* Theme aware style object
*/
css?: CSS;
/**
* The length of time (in milliseconds) the toast is rendered.
*
* @default 5000
*/
duration?: number;
}