({ style, onPress })
| 10 | import { View } from './View'; |
| 11 | |
| 12 | const ClearButton = ({ style, onPress }) => ( |
| 13 | <Button onPress={onPress} style={style.clearButton} styleName="clear tight"> |
| 14 | <Icon name="clear-text" style={style.clearIcon} /> |
| 15 | </Button> |
| 16 | ); |
| 17 | |
| 18 | ClearButton.propTypes = { |
| 19 | style: PropTypes.object.isRequired, |
nothing calls this directly
no outgoing calls
no test coverage detected