react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 810 B
JSX
import React, { Component } from 'react';
export default class KeyboardVariantIcon 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-keyboard-variant-icon ${this.props.className}`}><path d="M6 16h12v2H6v-2zm0-3v2H2v-2h4zm1 2v-2h3v2H7zm4 0v-2h2v2h-2zm3 0v-2h3v2h-3zm4 0v-2h4v2h-4zM2 10h3v2H2v-2zm17 2v-2h3v2h-3zm-1 0h-2v-2h2v2zM8 12H6v-2h2v2zm4 0H9v-2h3v2zm3 0h-2v-2h2v2zM2 9V7h2v2H2zm3 0V7h2v2H5zm3 0V7h2v2H8zm3 0V7h2v2h-2zm3 0V7h2v2h-2zm3 0V7h5v2h-5z"/></svg>
)
}
}