react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 809 B
JSX
import React, { Component } from 'react';
export default class ImageBrokenVariantIcon 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-variant-icon ${this.props.className}`}><path d="M21.001 5v6.591L17.997 8.58 14 12.587 10 8.59l-3.999 3.998L2.997 9.58V5c0-1.099.904-2.002 2.003-2.002h13.999C20.098 2.998 21 3.9 21 5zm-3.004 6.421l3.004 3.008v4.57A2.012 2.012 0 0 1 19 21H5A2.012 2.012 0 0 1 2.998 19V12.42L6 15.41 10 11.411l3.999 3.999"/></svg>
)
}
}