UNPKG

@sms-frontend/components

Version:

SMS Design React UI Library.

10 lines (9 loc) 459 B
import React from 'react'; import { ImageProps } from './interface'; import ImagePreview from './image-preview'; import ImagePreviewGroup from './image-preview-group'; declare const ImageComponent: React.ForwardRefExoticComponent<ImageProps & Omit<React.ImgHTMLAttributes<HTMLImageElement>, "className"> & React.RefAttributes<HTMLDivElement>> & { Preview: typeof ImagePreview; PreviewGroup: typeof ImagePreviewGroup; }; export default ImageComponent;