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    
ui-component-library / src / components / atoms / Icons / ContactMailIcon / ContactMailIcon.tsx
Size: Mime:
import React from 'react'
import { DefaultProps } from 'icons/typings'
import Vector from 'atoms/Vector'

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

const wording = {
  description: 'Contact the person through mail Icon',
  title: 'Contact Mail Icon',
  vectorClassName: 'contactmail',
}

class ContactMailIcon extends React.Component<Props> {
  static defaultProps = {
    width: '24px',
    height: '24px',
    viewBox: '0 0 24 24',
    fill: '#000000',
  }
  render() {
    return (
      <Vector {...this.props} {...wording}>
        <path d="M21 8V7l-3 2-3-2v1l3 2 3-2zm1-5H2C.9 3 0 3.9 0 5v14c0 1.1.9 2 2 2h20c1.1 0 1.99-.9 1.99-2L24 5c0-1.1-.9-2-2-2zM8 6c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H2v-1c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1zm8-6h-8V6h8v6z" />
      </Vector>
    )
  }
}

export { ContactMailIcon }
export default ContactMailIcon