()
| 106 | } |
| 107 | } |
| 108 | render() { |
| 109 | let styles = { |
| 110 | fill: this.props.active? "black": "#b5b5b5", |
| 111 | verticalAlign: "middle", |
| 112 | width: this.props.size, |
| 113 | height: this.props.size |
| 114 | }; |
| 115 | return ( |
| 116 | <svg viewBox="0 0 24 24" |
| 117 | onClick={this.props.onClick} |
| 118 | preserveAspectRatio="xMidYMid meet" fit |
| 119 | style={{...styles, ...this.props.style}}> |
| 120 | {this.renderGraphic()} |
| 121 | </svg> |
| 122 | ); |
| 123 | } |
| 124 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected