0.0.6 • Published 9 years ago

react-copyable v0.0.6

Weekly downloads
1
License
MIT
Repository
github
Last release
9 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