react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 1.3 kB
JSX
import React, { Component } from 'react';
export default class BitbucketIcon 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-bitbucket-icon ${this.props.className}`}><path d="M11.998 5.762c3.065.005 5.55-.519 5.55-1.171.001-.652-2.482-1.185-5.546-1.19-3.064-.004-5.549.52-5.55 1.172 0 .652 2.482 1.184 5.546 1.19zM12 14.395a2.754 2.754 0 1 0 0-5.507 2.754 2.754 0 0 0 0 5.507zM12 2c4.769 0 8.663 1.282 8.663 2.874 0 .42-1.04 6.432-1.453 8.816-.184 1.07-2.948 2.637-7.208 2.637v-.013l-.004.013c-4.26 0-7.023-1.568-7.208-2.637-.413-2.384-1.453-8.397-1.453-8.816C3.337 3.282 7.231 2 12 2zm6.226 14.08c.158 0 .307.105.307.338l-.007.074c-.331 1.772-.573 3.03-.616 3.22C17.621 21.017 15.071 22 12 22s-5.621-.984-5.91-2.287a235.46 235.46 0 0 1-.616-3.221l-.007-.074c0-.233.15-.339.307-.339.131 0 .237.094.237.094s2.133 1.689 5.989 1.69c3.856-.001 5.99-1.69 5.99-1.69s.105-.094.236-.094zm-4.849-4.44a1.38 1.38 0 1 1-2.76 0 1.38 1.38 0 0 1 2.76 0z"/></svg>
)
}
}