An open API service indexing awesome lists of open source software.

https://github.com/jaredk3nt/feathered

A dynamic React icon component based on Feather Icons without dangerouslySetInnerHTML
https://github.com/jaredk3nt/feathered

component component-library feather feather-icons icons iconset react reactjs

Last synced: about 1 month ago
JSON representation

A dynamic React icon component based on Feather Icons without dangerouslySetInnerHTML

Awesome Lists containing this project

README

          

# Feathered - Feather based react icons

This package is based on the [feather-icons](https://github.com/feathericons/feather) package by [@colebemis](https://twitter.com/colebemis) to create Icon components without DangerouslySetInnerHTML.

```bash
npm install --save feathered
```

## How to use Feathered

```js
import React from 'react';
import Feather from 'feathered';

function CloseButton({ onClose }) {
return (

Close


)
}
```

Feathered accepts the [toSvg](https://github.com/feathericons/feather#feathericonsnametosvgattrs) attributes as props for configuration:

```js

```