@modern-kit/react
Version:
13 lines (10 loc) • 500 B
TypeScript
import React__default, { CSSProperties } from 'react';
import { LazyImageProps } from '../LazyImage/index.js';
interface FallbackLazyImageProps extends LazyImageProps {
fallback: JSX.Element;
width: string | number;
height: string | number;
duration?: CSSProperties['transitionDuration'];
}
declare const FallbackLazyImage: React__default.ForwardRefExoticComponent<Omit<FallbackLazyImageProps, "ref"> & React__default.RefAttributes<HTMLImageElement>>;
export { FallbackLazyImage };