react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 863 B
JSX
import React, { Component } from 'react';
export default class AndroidDebugBridgeIcon 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-android-debug-bridge-icon ${this.props.className}`}><path d="M15 8.998a1 1 0 1 1-.001-2 1 1 0 0 1 0 2zm-6 0a1 1 0 1 1-.001-2 1 1 0 0 1 0 2zm7.122-4.63l2.1-2.1-.826-.826-2.304 2.305c-.937-.464-1.978-.749-3.093-.749s-2.156.285-3.093.75L6.601 1.441l-.824.826 2.1 2.1C6.14 5.64 4.998 7.678 4.998 9.997v1h14v-1c0-2.319-1.14-4.358-2.877-5.63zM5 15.997a7 7 0 1 0 14 0v-4H5v4z"/></svg>
)
}
}