An open API service indexing awesome lists of open source software.

https://github.com/nmrshll/react-component-knockout-button

Button component for React with transparent text
https://github.com/nmrshll/react-component-knockout-button

button knockout react transparent

Last synced: about 2 months ago
JSON representation

Button component for React with transparent text

Awesome Lists containing this project

README

          

# react-component-knockout-button
Button component for React with transparent text

![result](./docs/knockout.png "result")

## Installation

`yarn add react-component-knockout-button`

## Usage

[embedmd]:# (./docs/usage.js javascript)
```javascript
import React from "react";
import ReactDOM from "react-dom";
import Radium, { Style } from "radium";

import KnockoutButton from "react-component-knockout-button";

const styles = {
container: {
backgroundSize: "cover",
backgroundImage: "url(http://brokensquare.com/Code/assets/landscape.jpg)",
padding: "20% 20%"
}
};

const App = () => (






);

const AppRadium = Radium(App);

ReactDOM.render(



,
document.getElementById("app")
);
```