spinners-react
Version:
Lightweight SVG/CSS spinners for React
15 lines • 540 B
TypeScript
import { CSSProperties, HTMLAttributes } from 'react';
export declare const defaultProps: {
speed: number;
still: boolean;
thickness: number;
};
export declare const secondaryColorDefaultProps: {
secondaryColor: CSSProperties["color"];
speed: number;
still: boolean;
thickness: number;
};
export type SpinnerProps = HTMLAttributes<SVGElement> & Partial<typeof defaultProps>;
export type SecondaryColorSpinnerProps = SpinnerProps & Partial<typeof secondaryColorDefaultProps>;
//# sourceMappingURL=helpers.d.ts.map