schiehll / react-alert

alerts for React
MIT License
607 stars 98 forks source link

Custom style #20

Closed vovanada closed 7 years ago

vovanada commented 7 years ago

How about custom style for alert? Like text-transform and other.

schiehll commented 7 years ago

You can use a React Element as a message, so to add a text-transform you could do something like this:

this.msg.success(<div style={{textTransform: 'capitalize'}}>TEXT WILL BE CAPITALIZED</div>)