react-native-alert-notification
Version:
Toast notification and dialog box notification for react native
14 lines (12 loc) • 364 B
JavaScript
import { ALERT_TYPE } from '../config/ENV';
export const getImage = type => {
switch (type) {
case ALERT_TYPE.SUCCESS:
return require('../assets/success.png');
case ALERT_TYPE.WARNING:
return require('../assets/warning.png');
case ALERT_TYPE.DANGER:
return require('../assets/danger.png');
}
};
//# sourceMappingURL=image.js.map