react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 669 B
JSX
import React, { Component } from 'react';
export default class ChevronDoubleLeftIcon 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-chevron-double-left-icon ${this.props.className}`}><path d="M18.414 7.414L17 6l-6 6 6 6 1.414-1.414L13.828 12l4.586-4.586zm-6 0L11 6l-6 6 6 6 1.414-1.414L7.828 12l4.586-4.586z"/></svg>
)
}
}