Answers for "change color react icon"

1

change color react icon

// Use IconContext as mentioned in the Docs.
// https://github.com/react-icons/react-icons#configuration
function BlueLargeIcon() {
  return (
    <IconContext.Provider
      value={{ color: 'blue', size: '50px' }}
    >
      <div>
        <FaBeer />
      </div>
    </IconContext.Provider>
  );
}
Posted by: Guest on July-03-2021

Code answers related to "change color react icon"

Code answers related to "Javascript"

Browse Popular Code Answers by Language