UNPKG

@lobehub/ui

Version:

Lobe UI is an open-source UI component library for building AIGC web apps

9 lines (8 loc) 250 B
import { FC } from 'react'; import { type ImageProps as LobeImageProps } from "../../Image"; export interface ImageProps extends LobeImageProps { cover?: boolean; inStep?: boolean; } declare const Image: FC<ImageProps>; export default Image;