UNPKG

@blockscout/ui-toolkit

Version:

A comprehensive collection of reusable Chakra UI components and theme system for Blockscout's projects

9 lines (8 loc) 401 B
import { BoxProps, ImageProps as ChakraImageProps } from '@chakra-ui/react'; import { default as React } from 'react'; export interface ImageProps extends ChakraImageProps { fallback?: React.ReactNode; skeletonWidth?: BoxProps['width']; skeletonHeight?: BoxProps['height']; } export declare const Image: React.ForwardRefExoticComponent<ImageProps & React.RefAttributes<HTMLImageElement>>;