export type AlertType = 'success'
export type AlertProps = {
type: AlertType,
text: string,
testId: string,
}
export type AlertTypeIconMap = {
success: 'tick' | 'started',
}
const Alert = ({ type, text, testId }: AlertProps) => {
const alertTypeIconMap: AlertTypeIconMap = {
success: 'tick',
}
const styles = getStyles({ type })
return (
<View style={styles.iconContainer}>
<Icon type={alertTypeIconMap[type]} />
</View>
)
}
export default Alert