@gpa-gemstone/react-interactive
Version:
Interactive UI Components for GPA products
15 lines (14 loc) • 313 B
TypeScript
import * as React from 'react';
/**
* Props interface for the LoadingIcon component
*/
interface IProps {
Show: boolean;
Label?: string;
Size?: number;
}
/**
* Functional component for rendering a loading icon
*/
declare const LoadingIcon: React.FunctionComponent<IProps>;
export default LoadingIcon;