Evohus Admin supports multiple popular icon libraries for creating beautiful, scalable, and modern interfaces. You can easily integrate any of them in your Bootstrap project using Yarn or direct CDN links.
Lucide is an open-source icon set focused on crisp, consistent, and minimal icons perfect for modern dashboards.
yarn add lucide
You can use Lucide icons directly via JavaScript or SVG markup.
<i data-lucide="user" class="text-primary"></i>
<script>
lucide.createIcons();
</script>
Remix Icons provide a wide collection of clean and elegant line-style icons. They fit perfectly with both light and dark UI designs.
yarn add remixicon
<i class="ri-home-2-line text-primary fs-5"></i>
Bootstrap Icons are the official icon set developed by the Bootstrap team — lightweight, scalable, and fully compatible with all Bootstrap components.
yarn add bootstrap-icons
<i class="bi bi-bell text-primary fs-5"></i>
Boxicons is a simple vector icon set built for designers and developers, offering both outline and solid styles.
yarn add boxicons
<i class="bx bx-user text-primary fs-5"></i>
Line Awesome is a modern line-style alternative to Font Awesome, offering lightweight and visually balanced icons.
yarn add line-awesome
<i class="la la-heart text-danger fs-5"></i>