# react-multiple-icons

> Multiple icons support

Latest version **1.0.2** (published 2019-09-28) · MIT license · 0 weekly downloads

## Install

```sh
npm install react-multiple-icons
pnpm add react-multiple-icons
yarn add react-multiple-icons
bun add react-multiple-icons
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.2 |
| Published | 2019-09-28 |
| First published | 2019-09-18 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 31.6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 3 |
| Maintainers | salmanmehmood |

## Links

- npm: https://www.npmjs.com/package/react-multiple-icons
- Repository: https://github.com/SalmanMehmood/react-multiple-icons
- Homepage: https://github.com/SalmanMehmood/react-multiple-icons#readme
- Issues: https://github.com/SalmanMehmood/react-multiple-icons/issues
- npm.io page: https://npm.io/package/react-multiple-icons

## Recent versions

- 1.0.2 (latest) — 2019-09-28
- 1.0.1 — 2019-09-18
- 1.0.0 — 2019-09-18

## README

<img src="https://img.techpowerup.org/190918/react-icon-logo.png" width="120" alt="react-multiple-icons">

# [react-multiple-icons](https://salmanmehmood.github.io/ReactIconsDocumentation/)

[![version](https://img.shields.io/badge/version-1.0.0-gree.svg)](https://www.npmjs.com/package/react-multiple-icons)

Include popular icons in your React projects easily with `react-multiple-icons`,
which utilizes ES6 imports that allows you to include only the icons that your project is using.

## Installation

```bash
npm install react-multiple-icons --save
```

## Basic Usage

```jsx
import Icon from "react-multiple-icons";

class Question extends React.Component {
  render() {
    return (
      <h3>
        {" "}
        Lets go for a <Icon iconName="fa fa-industry" />?{" "}
      </h3>
    );
  }
}
```

If you want to use material design icons follow this.

```
<ReactIcons
    iconName="material-icons"
    iconStyle="custom-style"
    className="zoom_out_map"
/>
```

```
.custom-style {
	font-size: 1.2rem;
	color: "green"
}
```

Any customize style can be passed in like

```jsx
<Icon iconName="fa fa-industry" iconStyle="custom-style" />
```

[View the documentation](https://salmanmehmood.github.io/ReactIconsDocumentation/) for further usage examples and how to use icons from other packages.
_NOTE_: each Icon package has it's own subfolder under `react-icons` you import from.

## Supported Icons list

### Font Awesome

### Material Design

### Ionicons

### Linea Basic Icons

### Feather Icons

You can add more icons by submitting pull requests or creating issues.

| key       | default   | memo                         |
| --------- | --------- | ---------------------------- |
| size      | 1em       |
| iconStyle | undefined | can overwrite size and color |

---
_Source: https://npm.io/package/react-multiple-icons · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
