()
| 28 | } |
| 29 | |
| 30 | render() { |
| 31 | const { className, horizontal } = this.props; |
| 32 | |
| 33 | return ( |
| 34 | <div className={classes(styles.divider, horizontal ? styles.horizontal : styles.vertical, className)} |
| 35 | onMouseDown={this.handleMouseDown} /> |
| 36 | ); |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | export default Divider; |
nothing calls this directly
no outgoing calls
no test coverage detected