react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 776 B
JSX
import React, { Component } from 'react';
export default class CubeSendIcon 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-cube-send-icon ${this.props.className}`}><path d="M16.001 3.999L9 8.043v7.915L16 20l6.996-4.043V8.043M16.002 6.31L19.795 8.5l-3.794 2.188L12.207 8.5M0 7.003v1.996h7.003V7.002M11 10.113L15 12.423v4.687l-3.999-2.304m10-4.692v4.692l-3.998 2.304V12.42m-15-1.42v1.997h5V11M3.999 15v2.003h3.004V15"/></svg>
)
}
}