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.
-
react-facebook
Facebook components like a Login button, Like, Share, Chat, Comments, Page or Embedded Post -
react-avatar
Universal avatar makes it possible to fetch/generate an avatar based on the information you have about that user. -
react-file-reader-input
React file input component for complete control over styling and abstraction from file reading. -
react-headings
⚛ Auto-increment your HTML headings (h1, h2, etc.) for improved accessibility and SEO. -
react-swipe-to-delete-ios
A simple React component to reproduce the way iOS deletes an item in a list -
react-advanced-news-ticker
A powerful, flexible, lightweight and animated vertical news ticker component for React. -
@restpace/schema-form
A React component package for generating forms based on (almost) the full power of JSON Schema -
react-pagespeed-score
DISCONTINUED. A React component for display a dial-type chart of PageSpeed Insights.
SaaSHub - Software Alternatives and Reviews
Do you think we are missing an alternative of react-svg-buttons or a related project?
README
React SVG buttons
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.