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
- Host: GitHub
- URL: https://github.com/nmrshll/react-component-knockout-button
- Owner: nmrshll
- Created: 2017-09-15T11:07:53.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-09-16T20:10:54.000Z (almost 9 years ago)
- Last Synced: 2025-06-03T00:58:06.986Z (about 1 year ago)
- Topics: button, knockout, react, transparent
- Language: JavaScript
- Size: 752 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# react-component-knockout-button
Button component for React with transparent text

## 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")
);
```