Software Alternatives, Accelerators & Startups

Heroicons

Beautiful, free SVG icons from the makers of Tailwind CSS.

Heroicons

Heroicons Reviews and Details

This page is designed to help you find out whether Heroicons is good and if it is the right choice for you.

Screenshots and images

  • Heroicons Landing page
    Landing page //
    2023-02-25

Features & Specs

  1. Open Source

    Heroicons is an open-source project, which means it is free to use, modify, and distribute without licensing concerns.

  2. Comprehensive Collection

    Heroicons offers a broad range of icons that cover many common use cases, providing designers and developers with a versatile set of tools.

  3. High Quality

    The icons are meticulously designed, ensuring they are visually appealing and consistent. This enhances the overall aesthetic of any project they are used in.

  4. Easy Integration

    Heroicons can be easily integrated into projects via SVG or as a React component, making it user-friendly for different development environments.

  5. Regular Updates

    The project is actively maintained with regular updates and new icon additions, ensuring that users have access to the latest design trends and functionality.

  6. Variety of Styles

    Heroicons comes in both outline and solid styles, giving users flexibility to choose the best fit for their design needs.

Badges

Promote Heroicons. You can add any of these badges on your website.

SaaSHub badge
Show embed code
SaaSHub badge
Show embed code

Videos

The Perfect Icons for Tailwind CSS: Heroicons

Social recommendations and mentions

We have tracked the following product recommendations or mentions on various public social media platforms and blogs. They can help you see what people think about Heroicons and what they use it for.
  • How to Add Dark Mode to a React/Next.js App with Tailwind CSS
    For your theme toggle, always use clear and intuitive icons (like a sun for light mode and a moon for dark mode). Libraries like Heroicons or Font Awesome are excellent choices that I highly recommend. - Source: dev.to / 2 months ago
  • Best Angular Icon Libraries
    Heroicons offers clean, minimalist icons in solid and outline styles, created by the Tailwind CSS team. Integrated through Ng Icons for Angular compatibility with around 500 icons total. - Source: dev.to / 2 months ago
  • Best Svelte Icon Libraries in 2025
    Heroicons is an icon set created by the Tailwind Labs team featuring two primary styles: outline and solid. The icons are designed with clarity and balance, making them a popular choice especially in Tailwind CSS projects. - Source: dev.to / 2 months ago
  • 2024 Nuxt3 Annual Ecosystem Summary๐Ÿš€
    Document Address: Heroicons Official Document. - Source: dev.to / 9 months ago
  • Day 11: There's a Hero! ๐Ÿฆธ
    Today I'd like to share with you a beautiful icon library: Heroicons. - Source: dev.to / 10 months ago
  • 10 game-changing tools that level up Svelte developers in 2025 ๐Ÿ’ช
    Svelte Heros is a collection of free, open-source SVG icons built specifically for Svelte. Itโ€™s based on Heroicons and is incredibly easy to integrate into your Svelte projects. With over 200 icons, Svelte Heros offers easy access to a wide range of icons while keeping your app lightweight and performant. Github repository โ†’. - Source: dev.to / 12 months ago
  • Marrying Tailwind with Jekyll
    Surprisingly, in many projects, I don't really need more than what Jekyll can offer. So, I remain a loyal user. Until recently, I didn't have much to complain about, not until I decided to rebuild poshtui.com with Tailwind CSS. The only way to add Tailwind and Heroicons was through a JavaScript bundler, and I'm no longer used to that approach. - Source: dev.to / about 1 year ago
  • Icons gem for Phlex
    When it comes to building sleek, interactive UIs, having access to a robust set of icons is essential. Over the last few weeks, I've been migrating one of my projects from ERBs to Phlex. During this process, I found myself frequently reaching for SVG icons from popular libraries like Heroicons, Bootstrap icons, and Flag icons. After some frustration with manual integration into a Shared::Icon Phlex component, I... - Source: dev.to / about 1 year ago
  • How to Use Icons in Shadcn UI with Next.js
    In this section, we'll see how to use icons in Next.js with ShadCN UI. ShadCN UI includes Lucide-React icons by default, and you also have the option to incorporate SVG icons from Heroicons. - Source: dev.to / about 1 year ago
  • Discord Clone Using Next.js and Tailwind - Part 3: Channel List
    We start with the toggle button. We want icons for this that we get from heroicons. Letโ€™s create a new file in the ChannelList folder called Icons.tsx and paste the code for the icons here to have a solid separation:. - Source: dev.to / over 1 year ago
  • Create responsive navbar with React and Tailwind using the same markdown
    Since we are on the mobile view we want to add a hamburger menu to toggle the links visibility. I am using heroicons. We use some basic react state to know whether or not the hambuger is open, and we conditionally render either the hamburger or an X. - Source: dev.to / almost 2 years ago
  • Using Heroicons with TailwindCSS
    Heroicons are SVG-based icons packaged by the creators of TailwindCSS. They come in two size variants, 20, which is suitable for small buttons and form elements, and a 24 size, that is useful for primary navigation buttons like call to action and hero sections. 24 size comes as solid and outline. - Source: dev.to / almost 2 years ago
  • 29 Websites For Free Icon Sets
    Heroicons - Beautiful hand-crafted SVG icons, by the makers of Tailwind CSS. - Source: dev.to / about 2 years ago
  • A simple theme switcher in React for Tailwind CSS
    These depedencies provide unstyled accessible components from headless ui, icons from heroicons and common hooks with typescript support. - Source: dev.to / about 2 years ago
  • Create an icon component from a SVG icon
    Copy some SVG icon (go here for example https://heroicons.com, and copy the SVG version). - Source: dev.to / over 2 years ago
  • Any exciting projects/tools
    So, I combined a lot of pieces together: - NextJS & React for frontend, with a bunch of libraries: - https://tailwindui.com/, https://heroicons.com/ & fontawesome, https://github.com/unlight/tailwind-components & flowbite - + a lot of small hacks, tweaks, inspirations from other websites, etc. Source: over 2 years ago
  • [Noob question] Icons library alternative
    Heroicons by the makers of Tailwind is another option. Grab the SVGs. Source: over 2 years ago
  • Icons package that does not add extra size to your main.js file and does not load a big font file
    This package is a modified clone of the https://pub.dev/packages/heroicons package, with the removal of the icons constants list. The purpose of this modification is to reduce the package size, particularly for web applications. In order to achieve this, we have opted for SVG icons instead of font icons such as Font Awesome, Material Icons, etc., which add approximately 1.5 MB to the web build. By removing the... Source: over 2 years ago
  • Linen.dev: The 500KB Slack Alternative
    With icons, I've stopped using icon libraries a while back and now import just the SVG code that I need. I'm a big fan of Hero Icons[1] and they offer a way to quickly copy JSX or SVG code to the clipboard to faciliate this workflow. [1]: https://heroicons.com/. - Source: Hacker News / over 2 years ago
  • Building a calendar component with Tailwind and date-fns
    I am using heroicons (also created by makers of Tailwind CSS) to create buttons for fetching next and previous month. - Source: dev.to / over 2 years ago
  • How could I achieve the green active tab in CSS?
    Not to mention that FontAwesome went the commercial route and it's just silly to pay $100 per year for a collection of icons, considering that there are much better things available for free, such as Bootstrap Icons or Hero Icons. Source: over 2 years ago

Do you know an article comparing Heroicons to other products?
Suggest a link to a post with product alternatives.

Suggest an article

Heroicons discussion

Log in or Post with

Is Heroicons good? This is an informative page that will help you find out. Moreover, you can review and discuss Heroicons here. The primary details have not been verified within the last quarter, and they might be outdated. If you think we are missing something, please use the means on this page to comment or suggest changes. All reviews and comments are highly encouranged and appreciated as they help everyone in the community to make an informed choice. Please always be kind and objective when evaluating a product and sharing your opinion.