UNPKG

@gpa-gemstone/react-interactive

Version:
15 lines (14 loc) 313 B
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;