danalloway / react-country-flag

React component for emoji/svg country flags.
https://danalloway.github.io/react-country-flag/
MIT License
255 stars 43 forks source link

Add support for alt attribute #24

Closed Loupi closed 4 years ago

Loupi commented 4 years ago

It would be nice to have a way to set the alt attribute of the img element that react-country-flag creates.

danalloway commented 4 years ago

@Loupi all props are forwarded to the element so just include an alt prop where you use this component and you're off to the races!

<ReactCountryFlag alt="United States" countryCode="US" svg />
Loupi commented 4 years ago

@danalloway Thank you! It works fine