UNPKG

decentraland-ui

Version:

Decentraland's UI components and styles

9 lines (8 loc) 355 B
import * as React from 'react'; import './Toasts.css'; export declare type ToastPosition = 'bottom left' | 'bottom center' | 'bottom right' | 'top left' | 'top center' | 'top right'; export declare type ToastsProps = { position?: ToastPosition; children: React.ReactNode; }; export declare const Toasts: (props: ToastsProps) => React.JSX.Element;