()
| 5 | |
| 6 | class ListItem extends React.Component { |
| 7 | render() { |
| 8 | const { className, children, indent, label, ...props } = this.props; |
| 9 | |
| 10 | return ( |
| 11 | <Button className={classes(styles.list_item, indent && styles.indent, className)} {...props}> |
| 12 | <Ellipsis className={styles.label}>{label}</Ellipsis> |
| 13 | {children} |
| 14 | </Button> |
| 15 | ); |
| 16 | } |
| 17 | } |
| 18 | |
| 19 | export default ListItem; |
nothing calls this directly
no outgoing calls
no test coverage detected