@blockscout/ui-toolkit
Version:
A comprehensive collection of reusable Chakra UI components and theme system for Blockscout's projects
7 lines (6 loc) • 311 B
TypeScript
import { ImageProps as ChakraImageProps } from '@chakra-ui/react';
import { default as React } from 'react';
export interface ImageProps extends ChakraImageProps {
fallback?: React.ReactNode;
}
export declare const Image: React.ForwardRefExoticComponent<ImageProps & React.RefAttributes<HTMLImageElement>>;