UNPKG

@plteam/chat-ui

Version:

CUI Kit is a free and open-source library for creating AI assistant chat interfaces, built with React, Material UI, and TypeScript

11 lines (10 loc) 334 B
import React from 'react'; import AttachmentModel from '../../../models/AttachmentModel'; import { IdType } from '../../../types'; type Props = { item: AttachmentModel; galleryId: string; handleDelete: (id: IdType, url: string) => void; }; declare const PreviewItem: React.FC<Props>; export default PreviewItem;