File tree Expand file tree Collapse file tree 12 files changed +12
-12
lines changed
Expand file tree Collapse file tree 12 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ export default class Bounce extends React.Component<SpinnerProps> {
2626 }
2727
2828 return (
29- < AnimationContainer < 'bounce' >
29+ < AnimationContainer
3030 initAnimation = { ( ) => ( {
3131 bounce : ( value ) =>
3232 stagger ( 1000 , 2 , {
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ export default class Chase extends React.Component<SpinnerProps> {
2525 }
2626
2727 return (
28- < AnimationContainer < 'chase' | 'chaseDot' | 'chaseDotBefore' >
28+ < AnimationContainer
2929 initAnimation = { ( ) => ( {
3030 chase : ( value ) => ( {
3131 values : [ value ] ,
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ export default class Circle extends React.Component<SpinnerProps> {
2525 }
2626
2727 return (
28- < AnimationContainer < 'circle' >
28+ < AnimationContainer
2929 initAnimation = { ( ) => ( {
3030 circle : ( value ) =>
3131 stagger ( 100 , 12 , {
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ export default class CircleFade extends React.Component<SpinnerProps> {
2525 }
2626
2727 return (
28- < AnimationContainer < 'circleFade' >
28+ < AnimationContainer
2929 initAnimation = { ( ) => ( {
3030 circleFade : ( value ) =>
3131 stagger ( 100 , 12 , {
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ export default class Flow extends React.Component<SpinnerProps> {
1818 } = this . props
1919
2020 return (
21- < AnimationContainer < 'flow' >
21+ < AnimationContainer
2222 initAnimation = { ( ) => ( {
2323 flow : ( value ) =>
2424 stagger ( 150 , 3 , {
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ export default class Fold extends React.Component<SpinnerProps> {
1818 } = this . props
1919
2020 return (
21- < AnimationContainer < 'fold' >
21+ < AnimationContainer
2222 initAnimation = { ( ) => ( {
2323 fold : ( value ) =>
2424 stagger ( 300 , 4 , {
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ export default class Grid extends React.Component<SpinnerProps> {
1919 } = this . props
2020
2121 return (
22- < AnimationContainer < 'grid' >
22+ < AnimationContainer
2323 initAnimation = { ( ) => ( {
2424 grid : ( value ) =>
2525 stagger ( 100 , 5 , {
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ export default class Plane extends React.Component<SpinnerProps> {
1818 } = this . props
1919
2020 return (
21- < AnimationContainer < 'plane' >
21+ < AnimationContainer
2222 initAnimation = { ( ) => ( {
2323 plane : ( value ) => ( {
2424 values : [ value ] ,
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ export default class Pulse extends React.Component<SpinnerProps> {
1818 } = this . props
1919
2020 return (
21- < AnimationContainer < 'pulse' >
21+ < AnimationContainer
2222 initAnimation = { ( ) => ( {
2323 pulse : ( value ) => ( {
2424 values : [ value ] ,
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ export default class Swing extends React.Component<SpinnerProps> {
2424 }
2525
2626 return (
27- < AnimationContainer < 'swing' | 'swingDot' >
27+ < AnimationContainer
2828 initAnimation = { ( ) => ( {
2929 swing : ( value ) => ( {
3030 values : [ value ] ,
You can’t perform that action at this time.
0 commit comments