UNPKG

@gpa-gemstone/react-interactive

Version:
14 lines (13 loc) 280 B
/** * Props interface for the LoadingIcon component */ interface IProps { Show: boolean; Label?: string; Size?: number; } /** * Functional component for rendering a loading icon */ declare const LoadingIcon: (props: IProps) => JSX.Element; export default LoadingIcon;