Skip to main content

Icon List

You can get a list of the full icons at Bootstrap Icons. To add to your application, all icon names were transformed into camel case using lodash, always starting with the first letter in uppercase.

For example to use the bell-fill icon:

import { BellFill } from 'fleet-icons/icon/BellFill';
const App = () => {  return (    <BellFill />  )}