decentraland-ui
Version:
Decentraland's UI components and styles
9 lines (8 loc) • 349 B
TypeScript
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) => JSX.Element;