react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 777 B
JSX
import React, { Component } from 'react';
export default class AppleKeyboardCommandIcon 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-apple-keyboard-command-icon ${this.props.className}`}><path d="M6 2a4 4 0 0 1 4 4v2h4V6a4 4 0 1 1 4 4h-2v4h2a4 4 0 1 1-4 4v-2h-4v2a4 4 0 1 1-4-4h2v-4H6a4 4 0 1 1 0-8zm10 16a2 2 0 1 0 2-2h-2v2zm-2-8h-4v4h4v-4zm-8 6a2 2 0 1 0 2 2v-2H6zM8 6a2 2 0 1 0-2 2h2V6zm10 2a2 2 0 1 0-2-2v2h2z"/></svg>
)
}
}