@janiscommerce/ui-native
Version:
components library for Janis app
22 lines (21 loc) • 534 B
TypeScript
import { FC, ReactElement } from 'react';
export declare enum animationTypes {
Slide = "slide",
Fade = "fade",
None = "none"
}
interface Props {
backgroundColor?: string;
isVisible?: boolean;
title?: string;
subtitle?: string;
iconName?: string;
textsColor?: string;
iconColor?: string;
animationType?: animationTypes;
duration?: number;
onEndDuration?: () => void;
children?: ReactElement | null;
}
declare const FullScreenMessage: FC<Props>;
export default FullScreenMessage;