Skip to main content

Insert icons

The documentation project includes react-icons package that allows to add numerous icons directly in the text. All the icons are available here.

In order to add icons in the documentation you should add on the top of the file the following text

import { FaCogs } from 'react-icons/fa';
import { AiFillBug } from 'react-icons/ai';

In which FaCogs should be the list of all the icons you want to insert.

  • <FaCogs />
  • <AiFillBug />