@carton-org/react-neumorphism
Version:
A React component library implementing the neumorphism design style
13 lines • 459 B
TypeScript
import { SerializedStyles, Theme } from '@emotion/react';
import { ExtendedToast } from './toast.type';
interface ToastProps {
toast: ExtendedToast;
removeToast: (id: string) => void;
theme: Theme;
customStyle?: SerializedStyles;
}
declare const _default: import('react').ForwardRefExoticComponent<Pick<ToastProps, "customStyle" | "toast" | "removeToast"> & {
theme?: Theme;
}>;
export default _default;
//# sourceMappingURL=Toast.d.ts.map