UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 778 B
import React, { Component } from 'react'; export default class FilmstripOffIcon 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-filmstrip-off-icon ${this.props.className}`}><path d="M1 4.268L2.277 3 21 21.722 19.732 23l-3.733-3.732v1.73H8v-2H6v2H4V7.268L1 4.268zm17 4.73v-2h-2v2h2zm0 4v-2h-2v2h2zm0 2h-1.18l-10-10H8v-2h8v2h2v-2h2v15.179l-2-2v-1.179zm-10-2v-1.73l-.27-.27H6v2h2zm0 4v-2H6v2h2zm-2-14v1.179L4.82 2.998H6z"/></svg> ) } }