
      import React, { Component } from 'react';

      export default class CheckboxMarkedOutlineIcon 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-checkbox-marked-outline-icon ${this.props.className}`}><path d="M19 18.998L5 19V5h10v-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-8h-2m-11.087-.915L6.5 11.498l4.5 4.5 10-10-1.414-1.414L11 13.17l-3.086-3.086z"/></svg>
          )
        }
      }