react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 614 B
JSX
import React, { Component } from 'react';
export default class SerialPortIcon 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-serial-port-icon ${this.props.className}`}><path d="M7 3h10v2h2v3h-3v6H8V8H5V5h2V3zm10 6h2v5h-2V9zm-6 6h2v7h-2v-7zM5 9h2v5H5V9z"/></svg>
)
}
}