material-ui
Version:
Material Design UI components built with React
16 lines (12 loc) • 324 B
JSX
let React = require('react');
let SvgIcon = require('../../svg-icon');
let CommunicationCallReceived = React.createClass({
render() {
return (
<SvgIcon {...this.props}>
<path d="M20 5.41L18.59 4 7 15.59V9H5v10h10v-2H8.41z"/>
</SvgIcon>
);
}
});
module.exports = CommunicationCallReceived;