UNPKG

@sendbird/uikit-react

Version:

Sendbird UIKit for React: A feature-rich and customizable chat UI kit with messaging, channel management, and user authentication.

10 lines (9 loc) 361 B
import { ReactElement } from 'react'; import type { PendingFile } from '../hooks/usePendingFiles'; interface Props { pendingFiles: PendingFile[]; onRemove: (id: string) => void; className?: string; } export declare const PendingFilesPreview: ({ pendingFiles, onRemove, className }: Props) => ReactElement | null; export default PendingFilesPreview;