1.1.0 • Published 7 years ago
react-clipboard-icon v1.1.0
react-clipboard-icon
is an svg icon from clipboard.js site assets, packaged as a React stateless component
Installation | Usage | Development | License
All credits go to @zenorocha.
Installation
React is required as a peer dependency. With npm do
npm install react
npm install react-clipboard-iconUsage
All props are optional:
onClick{Function} : see this CodePen for an example of Clipboard.js + React.size{Number} defaults to24.style{Object}.title{String} text visible on mouseover.
import React from 'react'
import ClipboardIcon from 'react-clipboard-icon'
const style = { fill: 'red' }
const MyComponent = () => (
<div>
<ClipboardIcon
size={40}
style={style}
/>
</div>
)
export default MyComponentDevelopment
Transpile with npm run build.
Lint code with npm run lint.
Deploy with npm version major|minor|patch.