Icons

1. Tabler Icons

https://tabler-icons.io/
                        
import { IconGridDots,IconAward,IconCalendar,IconMail } from '@tabler/icons-react';

// ----------------------------------------------------------------------

const TablerIcons = () => {
  return(
    <IconGridDots width={22} />
    <IconAward width={25} />
    <IconCalendar width={30}/>
    <IconMail width={40}/>
  );
}