spinners-react
Version:
Lightweight SVG/CSS spinners for React
17 lines • 694 B
TypeScript
import React, { CSSProperties } from 'react';
import { SpinnerProps } from './helpers';
import { SpinnersProps } from './withSharedProps';
import './SpinnerDotted.css';
export type SpinnerDottedProps = SpinnersProps & SpinnerProps;
export declare function Component({ speed, still, thickness, ...svgProps }: SpinnerProps): React.JSX.Element;
export declare const SpinnerDotted: (props: Partial<{
color: CSSProperties["color"];
enabled: boolean;
size: CSSProperties["width"];
style: CSSProperties;
}> & React.HTMLAttributes<SVGElement> & Partial<{
speed: number;
still: boolean;
thickness: number;
}>) => React.JSX.Element;
//# sourceMappingURL=SpinnerDotted.d.ts.map