react-loading-icons
Version:
React implementation of the SVG Loaders library by Sam Herbert
40 lines (39 loc) • 1.63 kB
TypeScript
import AudioIcon from './components/audio';
import BallTriangleIcon from './components/ball-triangle';
import BarsIcon from './components/bars';
import CirclesIcon from './components/circles';
import GridIcon from './components/grid';
import HeartsIcon from './components/hearts';
import OvalIcon from './components/oval';
import PuffIcon from './components/puff';
import RingsIcon from './components/rings';
import SpinningCirclesIcon from './components/spinning-circles';
import TailSpinIcon from './components/tail-spin';
import ThreeDotsIcon from './components/three-dots';
export declare const Audio: typeof AudioIcon;
export declare const BallTriangle: typeof BallTriangleIcon;
export declare const Bars: typeof BarsIcon;
export declare const Circles: typeof CirclesIcon;
export declare const Grid: typeof GridIcon;
export declare const Hearts: typeof HeartsIcon;
export declare const Oval: typeof OvalIcon;
export declare const Puff: typeof PuffIcon;
export declare const Rings: typeof RingsIcon;
export declare const SpinningCircles: typeof SpinningCirclesIcon;
export declare const TailSpin: typeof TailSpinIcon;
export declare const ThreeDots: typeof ThreeDotsIcon;
declare const LoadingIcons: {
Audio: typeof AudioIcon;
BallTriangle: typeof BallTriangleIcon;
Bars: typeof BarsIcon;
Circles: typeof CirclesIcon;
Grid: typeof GridIcon;
Hearts: typeof HeartsIcon;
Oval: typeof OvalIcon;
Puff: typeof PuffIcon;
Rings: typeof RingsIcon;
SpinningCircles: typeof SpinningCirclesIcon;
TailSpin: typeof TailSpinIcon;
ThreeDots: typeof ThreeDotsIcon;
};
export default LoadingIcons;