material-ui
Version:
Material Design UI components built with React
16 lines (12 loc) • 551 B
JSX
let React = require('react');
let SvgIcon = require('../../svg-icon');
let NotificationPhoneForwarded = React.createClass({
render() {
return (
<SvgIcon {...this.props}>
<path d="M18 11l5-5-5-5v3h-4v4h4v3zm2 4.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1z"/>
</SvgIcon>
);
}
});
module.exports = NotificationPhoneForwarded;