UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 1.17 kB
import React, { Component } from 'react'; export default class JiraIcon 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-jira-icon ${this.props.className}`}><path d="M12 2a1.579 1.579 0 1 1 0 3.158A1.579 1.579 0 0 1 12 2zM7.79 3.053a1.579 1.579 0 1 1 0 3.158 1.579 1.579 0 0 1 0-3.158zm8.42 0a1.579 1.579 0 1 1 0 3.158 1.579 1.579 0 0 1 0-3.158zm-4.407 7.894c-2.106-2.105-1.58-3.158-1.58-3.158h3.685c0 1.58-2.105 3.158-2.105 3.158zm2.105 10.527s0-2.106-4.21-6.316c-4.211-4.21-4.737-5.263-5.264-8.421 0 0 .395-.526.921 0 .527.526 1.71.92 2.763.92 0 0 1.053 3.29 3.948 5.396 0 0 3.816-3.948 3.816-5.527 0 0 1.184.263 2.631-.79 0 0 .987-.521 1.053 0 .131 1.053-.921 4.738-5.263 8.422 0 0 2.763 3.158 2.5 6.316h-2.895zM9.17 16.21l2.237 2.5C10.355 19.764 10.224 22 10.224 22H7.066c.526-4.21 2.105-5.79 2.105-5.79z"/></svg> ) } }