I'm using react-icons.
In documentation normal usage like this:
import { FaBeer } from 'react-icons/fa';
<FaBeer />
But I can't use by this way because icon names comes from props. I need to use like this:
<Icon name={props.icon} />
How can i solve this ?