react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 757 B
JSX
import React, { Component } from 'react';
export default class QrcodeIcon 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-qrcode-icon ${this.props.className}`}><path d="M5 5h2v2H5V5zM1 1h10v10H1V1zm2 2v6h6V3H3zm2 14h2v2H5v-2zm-4-4h10v10H1V13zm2 2v6h6v-6H3zM17 5h2v2h-2V5zm-4-4h10v10H13V1zm2 2v6h6V3h-6zm-2 10h4v2h2v-2h4v2h-4v2h4v6h-4v-2h-4v2h-2v-2h2v-2h-2v-6zm8 8v-2h-2v2h2zm-2-4h-2v-2h-2v4h4v-2z"/></svg>
)
}
}