diff --git a/src/component/index.js b/src/component/index.js
index 330f320..9b22c0a 100644
--- a/src/component/index.js
+++ b/src/component/index.js
@@ -44,7 +44,7 @@ const DashedCircle = styled.circle`
animation: ${dashed} 1.4s ease-in-out infinite;
`
-export default (props, state, children) => {
+export default (props, state) => {
const { max, yRefreshing, y, phase } = state
const { zIndex, color, bgColor } = props
const p = Math.atan(y / max)
@@ -53,7 +53,7 @@ export default (props, state, children) => {
const Svg = phase === 'refreshing' ? RotatingSvg : 'svg'
const Circle = phase === 'refreshing' ? DashedCircle : 'circle'
const refreshed = phase === 'refreshed'
- return [
+ return (