import React from 'react'; import { ProgressBar } from 'soapbox/components/ui'; interface IChatPendingUpload { progress: number } /** Displays a loading thumbnail for an upload in the chat composer. */ const ChatPendingUpload: React.FC = ({ progress }) => { return (
); }; export default ChatPendingUpload;