UNPKG

d2-ui

Version:
20 lines (14 loc) 436 B
import React from 'react'; import PureRenderMixin from 'react-addons-pure-render-mixin'; import SvgIcon from '../../svg-icon'; const CommunicationCallMissedOutgoing = React.createClass({ mixins: [PureRenderMixin], render() { return ( <SvgIcon {...this.props}> <path d="M3 8.41l9 9 7-7V15h2V7h-8v2h4.59L12 14.59 4.41 7 3 8.41z"/> </SvgIcon> ); } }); export default CommunicationCallMissedOutgoing;