Icons
1. Lucide Icons
https://lucide.dev/icons/
import { Moon, Sun } from 'lucide-react';
// ----------------------------------------------------------------------
const LucidIcons = () => {
return(
<Sun size={24} />
<Moon size={24} />
);
}
2. Iconify Icons
https://iconify.design/
import { Icon } from '@iconify/react';
// ----------------------------------------------------------------------
const IconifyIcons = () => {
return(
<Icon icon="ic:round-check" width={24} height={24} />
<Icon icon="solar:pen-linear" width={24} height={24}/>
<Icon icon="qlementine-icons:menu-dots-16" width={24} height={24} />
<Icon icon="iconamoon:search-light" width={24} height={24} />
);
}