Socket
Socket
Sign inDemoInstall

@heroicons/react

Package Overview
Dependencies
0
Maintainers
4
Versions
113
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @heroicons/react


Version published
Weekly downloads
946K
decreased by-0.01%
Maintainers
4
Created
Weekly downloads
 

Package description

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

Last updated on 22 Mar 2024

Did you know?

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc