Package Exports
- react-feather
- react-feather/dist/icons/activity
- react-feather/dist/icons/alert-circle
- react-feather/dist/icons/alert-octagon
- react-feather/dist/icons/alert-triangle
- react-feather/dist/icons/anchor
- react-feather/dist/icons/arrow-down
- react-feather/dist/icons/arrow-left
- react-feather/dist/icons/arrow-right
- react-feather/dist/icons/arrow-up
- react-feather/dist/icons/award
- react-feather/dist/icons/bar-chart
- react-feather/dist/icons/bell
- react-feather/dist/icons/book
- react-feather/dist/icons/box
- react-feather/dist/icons/calendar
- react-feather/dist/icons/calendar.js
- react-feather/dist/icons/check
- react-feather/dist/icons/check-circle
- react-feather/dist/icons/chevron-down
- react-feather/dist/icons/chevron-left
- react-feather/dist/icons/chevron-right
- react-feather/dist/icons/chevron-up
- react-feather/dist/icons/clipboard
- react-feather/dist/icons/clock
- react-feather/dist/icons/clock.js
- react-feather/dist/icons/cloud-off
- react-feather/dist/icons/code
- react-feather/dist/icons/command
- react-feather/dist/icons/copy
- react-feather/dist/icons/corner-down-right
- react-feather/dist/icons/corner-up-right
- react-feather/dist/icons/download
- react-feather/dist/icons/edit
- react-feather/dist/icons/edit-2
- react-feather/dist/icons/external-link
- react-feather/dist/icons/eye
- react-feather/dist/icons/eye-off
- react-feather/dist/icons/facebook
- react-feather/dist/icons/fast-forward
- react-feather/dist/icons/file-text
- react-feather/dist/icons/filter
- react-feather/dist/icons/folder
- react-feather/dist/icons/gift
- react-feather/dist/icons/git-branch
- react-feather/dist/icons/git-commit
- react-feather/dist/icons/git-merge
- react-feather/dist/icons/github
- react-feather/dist/icons/gitlab
- react-feather/dist/icons/globe
- react-feather/dist/icons/grid
- react-feather/dist/icons/hash
- react-feather/dist/icons/heart
- react-feather/dist/icons/help-circle
- react-feather/dist/icons/image
- react-feather/dist/icons/inbox
- react-feather/dist/icons/info
- react-feather/dist/icons/layout
- react-feather/dist/icons/life-buoy
- react-feather/dist/icons/list
- react-feather/dist/icons/loader
- react-feather/dist/icons/lock
- react-feather/dist/icons/log-out
- react-feather/dist/icons/mail
- react-feather/dist/icons/map-pin
- react-feather/dist/icons/map-pin.js
- react-feather/dist/icons/maximize
- react-feather/dist/icons/maximize-2
- react-feather/dist/icons/menu
- react-feather/dist/icons/message-circle
- react-feather/dist/icons/message-square
- react-feather/dist/icons/minimize
- react-feather/dist/icons/minus
- react-feather/dist/icons/minus-circle
- react-feather/dist/icons/monitor
- react-feather/dist/icons/more-horizontal
- react-feather/dist/icons/more-vertical
- react-feather/dist/icons/move
- react-feather/dist/icons/navigation
- react-feather/dist/icons/package
- react-feather/dist/icons/paperclip
- react-feather/dist/icons/pause-circle
- react-feather/dist/icons/phone
- react-feather/dist/icons/phone-call
- react-feather/dist/icons/pie-chart
- react-feather/dist/icons/play-circle
- react-feather/dist/icons/plus
- react-feather/dist/icons/plus-circle
- react-feather/dist/icons/printer
- react-feather/dist/icons/refresh-cw
- react-feather/dist/icons/repeat
- react-feather/dist/icons/rewind
- react-feather/dist/icons/rotate-ccw
- react-feather/dist/icons/rss
- react-feather/dist/icons/search
- react-feather/dist/icons/send
- react-feather/dist/icons/settings
- react-feather/dist/icons/share-2
- react-feather/dist/icons/shopping-cart
- react-feather/dist/icons/slash
- react-feather/dist/icons/sliders
- react-feather/dist/icons/smartphone
- react-feather/dist/icons/star
- react-feather/dist/icons/sun
- react-feather/dist/icons/tablet
- react-feather/dist/icons/tag
- react-feather/dist/icons/thumbs-down
- react-feather/dist/icons/thumbs-up
- react-feather/dist/icons/toggle-right
- react-feather/dist/icons/trash
- react-feather/dist/icons/trash-2
- react-feather/dist/icons/triangle
- react-feather/dist/icons/tv
- react-feather/dist/icons/twitter
- react-feather/dist/icons/unlock
- react-feather/dist/icons/upload
- react-feather/dist/icons/user
- react-feather/dist/icons/user-check
- react-feather/dist/icons/user-plus
- react-feather/dist/icons/user.js
- react-feather/dist/icons/users
- react-feather/dist/icons/users.js
- react-feather/dist/icons/volume
- react-feather/dist/icons/x
- react-feather/dist/icons/x-circle
- react-feather/dist/icons/zap
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-feather) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
React Feather Icons
What is react-feather?
react-feather is a collection of simply beautiful open source icons for React.js. Each icon is designed on a 24x24 grid with an emphasis on simplicity, consistency and readability.
Based on Feather Icons v4.28.0
Installation
yarn add react-feather
or
npm i react-feather
Usage
import React from 'react';
import { Camera } from 'react-feather';
const App = () => {
return <Camera />
};
export default App;
Icons can be configured with inline props:
<Camera color="red" size={48} />
If you can't use ES6 imports, it's possible to include icons from the compiled folder ./dist.
var Camera = require('react-feather/dist/icons/camera').default;
var MyComponent = React.createClass({
render: function () {
return (
<Camera />
);
}
});
You can also include the whole icon pack:
import React from 'react';
import * as Icon from 'react-feather';
const App = () => {
return <Icon.Camera />
};
export default App;