react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 694 B
JSX
import React, { Component } from 'react';
export default class VideoSwitchIcon 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-video-switch-icon ${this.props.className}`}><path d="M13 15.498v-2.5H7v2.5l-3.5-3.5 3.5-3.5v2.5h6v-2.5l3.5 3.5m1.5-2.5v-3.5a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-3.5l4 4v-13l-4 4z"/></svg>
)
}
}