Install and use Heroicons in React
masterTo use Heroicons as React components, install the @heroicons/react package.
Icons follow an upper camel case naming convention and are always suffixed with Icon. You can import them from specific sub-paths depending on the icon size and style:
24/outline: 24x24 outline icons24/solid: 24x24 solid icons20/solid: 20x20 solid icons16/solid: 16x16 solid icons
npm install @heroicons/reactimport { BeakerIcon } from '@heroicons/react/24/solid'
function MyComponent() {
return (
<div>
<BeakerIcon className="size-6 text-blue-500" />
<p>...</p>
</div>
)
}