UNPKG

quick-ui-design

Version:

A Quick UI library for user interface design with React fast and easy.

13 lines (12 loc) 440 B
import { GetProps, Image, ImageProps } from 'antd'; import { FC } from 'react'; import { IMAGE_PREVIEW } from '../../../Types'; interface IChildren extends Omit<GetProps<typeof Image.PreviewGroup>, 'children'> { children: ImageProps[]; } export interface IImagePreviewGroup { ctype: typeof IMAGE_PREVIEW; props: IChildren; } declare const ImagePreviewGroup: FC<IImagePreviewGroup>; export default ImagePreviewGroup;