.
This commit is contained in:
+2
@@ -0,0 +1,2 @@
|
||||
import './style.css';
|
||||
export { Toast } from './toast';
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
import * as React from 'react';
|
||||
type ToastProps = React.HTMLProps<HTMLDivElement> & {
|
||||
children?: React.ReactNode;
|
||||
onClick?: () => void;
|
||||
className?: string;
|
||||
};
|
||||
export declare const Toast: React.ForwardRefExoticComponent<Omit<ToastProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
||||
export {};
|
||||
Reference in New Issue
Block a user