0.0.6 • Published 10 years ago

react-copyable v0.0.6

Weekly downloads
1
License
MIT
Repository
github
Last release
10 years ago

#react-copyable Clipboard copyable React component

Implementation of clipboard copyable text React component.

usage

var React = require('react'),
Copyable = require('react-copyable');
...
  render: function() {
    return (
        <Copyable text="copy-text" />
    );
  }

...

The clipboard accessing is depend on document.execCommand function. If browser is not support the feature, only the text value is selected and can be copy using native operation(ex. press Ctrl + C ...).

Customization

There are two props to customize component:

  • Provides onCopy handler for when successfully copy to clipboard
  • The component have styles defined inline. Override styles via the style prop
0.0.6

10 years ago

0.0.5

10 years ago

0.0.4

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago