khamba
Version:
A cli tool for sharing files through local network.
23 lines (22 loc) • 528 B
TypeScript
import React from 'react';
export declare const spinners: {
dashSlash: string[];
dotsRound: string[];
dots: string[];
dotsMore: string[];
dotsMoreReverse: string[];
upDownBar: string[];
upDownDot: string[];
boxInBox: string[];
leftRightBar: string[];
eye: string[];
fish: string[];
hash: string[];
};
type TProps = {
frames: string[];
color?: string;
speed?: number;
};
export declare const Spinner: ({ frames, color, speed }: TProps) => React.JSX.Element;
export {};