
      import React, { Component } from 'react';

      export default class FilmIcon 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-film-icon ${this.props.className}`}><path d="M3.5 3H5V1.8a.8.8 0 0 1 .8-.8h4.4a.8.8 0 0 1 .8.8V3h1.5A1.5 1.5 0 0 1 14 4.5V5h8v15h-8v.5a1.5 1.5 0 0 1-1.5 1.5h-9A1.5 1.5 0 0 1 2 20.5v-16A1.5 1.5 0 0 1 3.5 3zM18 7v2h2V7h-2zm-4 0v2h2V7h-2zm-4 0v2h2V7h-2zm4 9v2h2v-2h-2zm4 0v2h2v-2h-2zm-8 0v2h2v-2h-2z"/></svg>
          )
        }
      }