UNPKG

nes-ui-react

Version:

A design system that paints the web in 8 bits.

7 lines (6 loc) 299 B
import { ButtonHTMLAttributes } from "react"; export interface ToastProps extends ButtonHTMLAttributes<any> { bubblePostion?: 'left' | 'right'; } export declare const ToastCustomProps = "bubblePostion"; export declare const Toast: (props: ToastProps) => import("react/jsx-runtime").JSX.Element;