React Accordion

Idea

uidesigndaily

;

React Icons

react icons

npm install react-icons --save
// Imports Home icon from FontAwesome Collection
import { FaHome } from 'react-icons/fa';

// Usage
const Component = () => {
  return <FaHome className='icon' />;
};