react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 623 B
JSX
import React, { Component } from 'react';
export default class CallMissedIcon 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-call-missed-icon ${this.props.className}`}><path d="M19.59 7.003l-7.588 7.587-5.59-5.591h4.59V7.002H2.996V15H5v-4.59l7.002 7.003 9-9.004"/></svg>
)
}
}