@jsmith21/svg-loaders-react
Version:
React implementation of the SVG Loaders library by Sam Herbert
30 lines (27 loc) • 1.11 kB
TypeScript
import React from 'react';
declare const Audio: (props: React.SVGProps<SVGSVGElement>) => JSX.Element;
declare const BallTriangle: (props: React.SVGProps<SVGSVGElement>) => JSX.Element;
declare const Bars: (props: React.SVGProps<SVGSVGElement>) => JSX.Element;
declare const Circles: (props: React.SVGProps<SVGSVGElement>) => JSX.Element;
declare const Grid: (props: React.SVGProps<SVGSVGElement>) => JSX.Element;
declare const Hearts: (props: React.SVGProps<SVGSVGElement>) => JSX.Element;
declare const Oval: (props: React.SVGProps<SVGSVGElement>) => JSX.Element;
declare const Puff: (props: React.SVGProps<SVGSVGElement>) => JSX.Element;
declare const Rings: (props: React.SVGProps<SVGSVGElement>) => JSX.Element;
declare const SpinningCircles: (props: React.SVGProps<SVGSVGElement>) => JSX.Element;
declare const TailSpin: (props: React.SVGProps<SVGSVGElement>) => JSX.Element;
declare const ThreeDots: (props: React.SVGProps<SVGSVGElement>) => JSX.Element;
export {
Audio,
BallTriangle,
Bars,
Circles,
Grid,
Hearts,
Oval,
Puff,
Rings,
SpinningCircles,
TailSpin,
ThreeDots,
}