Popularity
3.3
Stable
Activity
0.0
Stable
223
13
28

Monthly Downloads: 0
Programming language: JavaScript
License: MIT License
Tags: UI Components     Miscellaneous     UI     React     React-component     Button     Icon    
Latest version: v0.4.0

react-svg-buttons alternatives and similar libraries

Based on the "Miscellaneous" category.
Alternatively, view react-svg-buttons alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of react-svg-buttons or a related project?

Add another 'Miscellaneous' Library

README

React SVG buttons

Version

This package provides a <MorphIcon /> component used to compose available buttons, it's able to morph from whatever icon type to another one.

The <MorphIcon /> component exposes 18 icon types.

It also provides a set of button components.

Please, take a look at the demo.

Installation

npm install --save react-svg-buttons

Usage

import { render } from 'react-dom'
import {
    MorphIcon,
    CloseButton,
    NavButton,
    PlusButton,
} from 'react-svg-buttons'

const Demo = () => (
    <div>
        <MorphIcon type="thunderbolt" />
        <CloseButton />
        <NavButton direction="right" opened={false} />
        <PlusButton />
    </div>
)

render(<Demo />, document.getElementById('demo'))

License

MIT. Copyright (c) 2015 Raphaël Benitte.


*Note that all licence references and agreements mentioned in the react-svg-buttons README section above are relevant to that project's source code only.