UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 688 B
import React, { Component } from 'react'; export default class FlagCheckeredIcon 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-flag-checkered-icon ${this.props.className}`}><path d="M14.4 6H20v10h-7l-.4-2H7v7H5V4h9l.4 2zm-.4 8h2v-2h2v-2h-2V8h-2v2l-1-2V6h-2v2H9V6H7v2h2v2H7v2h2v-2h2v2h2v-2l1 2v2zm-3-4V8h2v2h-2zm3 0h2v2h-2v-2z"/></svg> ) } }