forked from wangdicoder/react-native-indicator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
42 lines (40 loc) · 1.7 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/**
* Created by wangdi on 8/12/16.
*/
'use strict';
import Dots from './lib/loader/DotsLoader';
import Pulse from './lib/loader/PulseLoader';
import Text from './lib/loader/TextLoader';
import Bubbles from './lib/loader/BubblesLoader';
import Circles from './lib/loader/CirclesLoader';
import Ripple from './lib/loader/RippleLoader';
import Breathing from './lib/loader/BreathingLoader';
import Lines from './lib/loader/LinesLoader';
import Music from './lib/loader/MusicLoader';
import EatBean from './lib/loader/EatBeanLoader';
import DoubleCircle from './lib/loader/DoubleCircleLoader';
import RotationCircle from './lib/loader/RotationCircleLoader';
import RotationHole from './lib/loader/RotationHoleLoader';
import CirclesRotationScale from './lib/loader/CirclesRotationScaleLoader';
//import Square from './lib/loader/SquareLoader';
import NineCubes from './lib/loader/NineCubesLoader';
import LineDots from './lib/loader/LineDotsLoader';
import ColorDots from './lib/loader/ColorDotsLoader';
export const PulseLoader = Pulse;
export const DotsLoader = Dots;
export const TextLoader = Text;
export const BubblesLoader = Bubbles;
export const CirclesLoader = Circles;
export const RippleLoader = Ripple;
export const BreathingLoader = Breathing;
export const LinesLoader = Lines;
export const MusicBarLoader = Music;
export const EatBeanLoader = EatBean;
export const DoubleCircleLoader = DoubleCircle;
export const RotationCircleLoader = RotationCircle;
export const RotationHoleLoader = RotationHole;
export const CirclesRotationScaleLoader = CirclesRotationScale;
//export const SquareLoader = Square;
export const NineCubesLoader = NineCubes;
export const LineDotsLoader = LineDots;
export const ColorDotsLoader = ColorDots;