material-ui
Version:
Material Design UI components built with React
20 lines (14 loc) • 414 B
JSX
const React = require('react/addons');
const PureRenderMixin = React.addons.PureRenderMixin;
const SvgIcon = require('../../svg-icon');
const CommunicationCallMade = React.createClass({
mixins: [PureRenderMixin],
render() {
return (
<SvgIcon {...this.props}>
<path d="M9 5v2h6.59L4 18.59 5.41 20 17 8.41V15h2V5z"/>
</SvgIcon>
);
}
});
module.exports = CommunicationCallMade;