Socket
Socket
Sign inDemoInstall

@heroicons/react

Package Overview
Dependencies
Maintainers
4
Versions
118
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@heroicons/react


Version published
Weekly downloads
860K
decreased by-10.67%
Maintainers
4
Weekly downloads
 
Created

What is @heroicons/react?

@heroicons/react is a React library that provides a set of free, MIT-licensed high-quality SVG icons. These icons are designed to be used in web applications and are available in both outline and solid styles.

What are @heroicons/react's main functionalities?

Outline Icons

This feature allows you to use outline style icons in your React application. The code sample demonstrates how to import and use the `BeakerIcon` from the `@heroicons/react/outline` package.

import { BeakerIcon } from '@heroicons/react/outline';

function Example() {
  return <BeakerIcon className="h-6 w-6 text-blue-500" />;
}

Solid Icons

This feature allows you to use solid style icons in your React application. The code sample demonstrates how to import and use the `BeakerIcon` from the `@heroicons/react/solid` package.

import { BeakerIcon } from '@heroicons/react/solid';

function Example() {
  return <BeakerIcon className="h-6 w-6 text-blue-500" />;
}

Customizable Icons

This feature allows you to customize the size and color of the icons. The code sample demonstrates how to change the size and color of the `BeakerIcon`.

import { BeakerIcon } from '@heroicons/react/outline';

function Example() {
  return <BeakerIcon className="h-8 w-8 text-red-500" />;
}

Other packages similar to @heroicons/react

FAQs

Package last updated on 02 Mar 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc