GetIcon.js 189 B

123456789
  1. import * as Icons from "react-icons/bs";
  2. const GetIcon = ({ icon, size, color }) => {
  3. const Icon = Icons[icon];
  4. return <Icon size={size} color={color} />;
  5. };
  6. export default GetIcon;