Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
import React from 'react'
import { DefaultProps } from 'icons/typings'
import Vector from 'atoms/Vector'
import { fromPropsToIdentifier } from 'atoms/Icons/deps'

// extending interface from Label component
interface Props extends DefaultProps {}

const wording = {
  description: 'Copy Icon',
  title: 'Copy Icon',
  vectorClassName: 'copyicon',
}

class CopyIcon extends React.PureComponent<Props> {
  static defaultProps = {
    width: '32px',
    height: '32px',
    viewBox: '0 0 32 32',
    fill: 'none',
    stroke: '#000000',
    strokeWidth: '2',
  }

  render() {
    const identifier = fromPropsToIdentifier(this.props)
    return (
      <Vector {...this.props} {...wording} namespace={identifier}>
        <g>
          <path d="M6 2 L6 30 26 30 26 10 18 2 Z M18 2 L18 10 26 10" />
        </g>
      </Vector>
    )
  }
}

export { CopyIcon }
export default CopyIcon