I've tried a couple of solutions to render but unfortunately none of them work.
Solution#1
showMessage({
icon: 'info',
message: 'No network connection',
type: 'danger',
icon: <Icon name={"calendar-blank"} size={20} color={'red} />
})
Solution#2
showMessage({
icon: 'info',
message: 'No network connection',
type: 'danger',
icon: () => { return(<Icon name={"calendar-blank"} size={20} color={'red} />)}
})
Solution#3
showMessage({
icon: 'info',
message: 'No network connection',
icon: <Icon name={"calendar-blank"} size={20} color={'red} />
})
Nothing works :/
I've tried a couple of solutions to render but unfortunately none of them work.
Solution#1
Solution#2
Solution#3
Nothing works :/