UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 824 B
import React, { Component } from 'react'; export default class PhoneIncomingIcon extends Component { static defaultProps = { className: '' }; constructor(props) { super(props); } render() { return ( <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" baseProfile="full" viewBox="0 0 24.00 24.00" {...this.props} className={`material material-phone-incoming-icon ${this.props.className}`}><path d="M4 3c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1-1.25 0-2.45-.2-3.57-.57a1.02 1.02 0 0 0-1.02.24l-2.2 2.2a15.049 15.049 0 0 1-6.59-6.59l2.2-2.21a.96.96 0 0 0 .25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4zm15 8V9.5h-3.5L21 4l-1-1-5.5 5.5V5H13v6h6z"/></svg> ) } }