export type ImageLoadState = {
    LOADED: 'loaded',
    LOADING: 'loading',
    ERROR: 'error',
    UNKNOWN: 'unknown',
    EMPTY: '',
}
