| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
KC React Widgets is a suite of pre-styled react widgets.
The widgets have a noticeable "3D", skeumorphic appearance, and are good for bold call-to-action widgets, such as "launch buttons".
npm install --save kc-react-widgets # using NPM
yarn add kc-react-widgets # using yarnimport React, {Component} from 'react';
import {Button} from 'kc-react-widgets';
class App extends Component {
render() {
return (
<div className="App">
<Button onClick={() => console.log('Hello world!')}>
Click me!
</Button>
</div>
);
}
}All widgets can be customized based on shape, color, 3D perspective depth.
kc-react-widget is licensed under the MIT license.
Pull requests are welcome!
| Back | FazBrowse Home | New Git URL |