react-web-native-sketch
Version:
[TODO: We need an overview of how this can be used via npm vs as a local package]
12 lines (11 loc) • 323 B
TypeScript
/**
* Created by alexbuicescu on 19 - Mar 2018.
*/
import * as React from 'react';
import { Classes } from '../';
import { CIRCULAR_PROGRESS_SIZE } from '../utils/enums';
export interface Props {
size?: CIRCULAR_PROGRESS_SIZE;
style?: Classes;
}
export declare const LoadingContainer: React.ComponentType<Props>;