import React from 'react'; import BaseToast from './BaseToast'; import { Colors } from '../config/theme'; import { ToastConfigParams } from '../utils/interfaces'; const InfoToast = ({ text1, text2, hide, onPress, barWidth, isRTL, duration, showProgressBar, showCloseIcon, progressBarColor, backgroundColor, textColor, iconColor, iconSize, icon, iconFamily, width, minHeight, style, theme = 'light', closeIcon, closeIconSize, closeIconColor, closeIconFamily }: ToastConfigParams) => { return ( ); }; export default InfoToast;