UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 788 B
import React, { Component } from 'react'; export default class ImageBrokenIcon 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-image-broken-icon ${this.props.className}`}><path d="M18.999 3A2 2 0 0 1 21 5v6h-2v2h-2v2h-2v2h-2v2h-2v2H4.991A1.992 1.992 0 0 1 3 19V5c0-1.104.886-2 1.991-2H19zM21 15v4a2 2 0 0 1-2 2h-4v-2h2v-2h2v-2h2zm-2.001-6.5a.5.5 0 0 0-.5-.5H5.49a.5.5 0 0 0-.5.5v7a.5.5 0 0 0 .5.5H11v-1h2v-2h2v-2h2V9h1.999v-.5z"/></svg> ) } }