react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 666 B
JSX
import React, { Component } from 'react';
export default class CallSplitIcon 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-split-icon ${this.props.className}`}><path d="M13.999 3.999l2.29 2.29-2.88 2.881 1.42 1.421L17.71 7.71 20 10V3.999m-10 0H3.999V10l2.29-2.29L11 12.412V20h1.997v-8.409L7.71 6.29"/></svg>
)
}
}