UNPKG

stream-chat-react

Version:

React components to create chat conversations or livestream style chat

9 lines (8 loc) 457 B
import React from 'react'; import { DownloadIcon } from './icons'; import { SafeAnchor } from '../SafeAnchor'; export var DownloadButton = function (_a) { var assetUrl = _a.assetUrl; return (React.createElement(SafeAnchor, { className: 'str-chat__message-attachment-file--item-download', download: true, href: assetUrl, target: '_blank' }, React.createElement(DownloadIcon, { className: 'str-chat__message-attachment-download-icon' }))); };