UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 836 B
import React, { Component } from 'react'; export default class PhoneDotsIcon 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-dots-icon ${this.props.className}`}><path d="M19 10.998h2v-2h-2m1 6.5c-1.248 0-2.448-.2-3.573-.568a1 1 0 0 0-1.016.245l-2.2 2.203a15.073 15.073 0 0 1-6.589-6.585l2.2-2.208a.995.995 0 0 0 .244-1.015A11.492 11.492 0 0 1 8.5 3.998a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1c0 9.389 7.611 17 17 17a1 1 0 0 0 1-1v-3.5a1 1 0 0 0-1-1zm-3-6.5h-2v2h2m-4-2h-2v2h2v-2z"/></svg> ) } }