An icon set based on Feather Icons
You can see and play around with all icons on Demo Page
Inspired by awesome Feather Icons and really useful application of @gaddafirusli - iconsvg.xyz, this icon set was created.
This set is based on Feather Icons v4.19.0
, but also includes several icons created by @gaddafirusli specially for his site iconsvg.xyz.
npm install --save @daminort/react-feather-icons
import React, { Component } from 'react'
import Icon from '@daminort/react-feather-icons'
class Example extends Component {
render () {
return (
<Icon
name="arrowUp"
size="48"
thickness="2"
ends="round"
joins="round"
color="#000000"
/>
)
}
}
Name | Type | Required | Default value |
---|---|---|---|
name | string | * | |
size | number | 24 | |
thickness | number | 2 | |
ends | string: 'butt', 'round', or 'square' | round | |
joins | string: 'bevel', 'round' or 'arcs' | round | |
color | string | currentColor |