react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 749 B
JSX
import React, { Component } from 'react';
export default class CurrencyBtcIcon 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-currency-btc-icon ${this.props.className}`}><path d="M4.5 5H8V2h2v3h1.5V2h2v3C19 5 19 11 16 11.25 20 11 21 19 13.5 19v3h-2v-3H10v3H8v-3H4.5l.5-2h1a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1H4.5V5zM10 7v4s4.5.25 4.5-2S10 7 10 7zm0 5.5v4.496s5.5.004 5.5-2.246S10 12.5 10 12.5z"/></svg>
)
}
}