echoulen / echoulen/react-pull-to-refresh
Remove Arrow Icon in PullDownContent and ReleaseContent
Open
help wanted
- Dominant language
- TypeScript
- Stars
- 34
- Forks
- 19
- PR merge metrics
- No merged PRs in 30d
Description
Hi, I want to remove arrow icon in PullDownContent and ReleaseContent component. Can I create PR?
I think maybe the correction will be like this
```javascript
interface PullDownContentProps {
height?: string
background?: any
label?: string
disabled?: boolean
}
export const ReleaseContent: React.SFC = ({
height = '200px',
background = 'none',
label = 'Release to refresh'
disabled = false
}) => (
{disabled ? null :
}
{label}
{label}
)
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.