@payfit/unity-components
Version:
10 lines (9 loc) • 325 B
TypeScript
import { PropsWithChildren } from 'react';
export interface ToastActionProps {
onPress: () => void;
}
declare function ToastAction({ children, onPress, }: PropsWithChildren<ToastActionProps>): import("react/jsx-runtime").JSX.Element;
declare namespace ToastAction {
var displayName: string;
}
export { ToastAction };