bolt.diy/app/components/chat/ExportChatButton.tsx
2024-11-23 00:23:45 +02:00

15 lines
433 B
TypeScript

import WithTooltip from '~/components/ui/Tooltip';
import { IconButton } from '~/components/ui/IconButton';
import React from 'react';
export const ExportChatButton = ({exportChat}: {exportChat: () => void}) => {
return (<WithTooltip tooltip="Export Chat">
<IconButton
title="Export Chat"
onClick={exportChat}
>
<div className="i-ph:download-simple text-xl"></div>
</IconButton>
</WithTooltip>);
}