diff --git a/src/components/ActivityIndicator/index.js b/src/components/ActivityIndicator/index.js index 758e0c02..153979ca 100644 --- a/src/components/ActivityIndicator/index.js +++ b/src/components/ActivityIndicator/index.js @@ -17,6 +17,10 @@ import ViewPropTypes from '../View/ViewPropTypes'; import { bool, number, oneOf, oneOfType, string } from 'prop-types'; import React, { Component } from 'react'; +const createSvgCircle = style => ( + +); + class ActivityIndicator extends Component { static displayName = 'ActivityIndicator'; @@ -40,29 +44,15 @@ class ActivityIndicator extends Component { const svg = ( - - + {createSvgCircle({ + stroke: color, + opacity: 0.2 + })} + {createSvgCircle({ + stroke: color, + strokeDasharray: 80, + strokeDashoffset: 60 + })} );