UNPKG

@mitesh-v2stech/react-native-toast-message

Version:
20 lines (15 loc) 370 B
import React from 'react'; import BaseToast from './base'; import { icons } from '../assets'; import colors from '../colors'; function InfoToast(props) { return ( <BaseToast {...props} style={{ borderLeftColor: colors.lightSkyBlue }} leadingIcon={icons.info} /> ); } InfoToast.propTypes = BaseToast.propTypes; export default InfoToast;