bolt.new/app/components/chat/ExportChatButton.tsx

14 lines
437 B
TypeScript
Raw Normal View History

2024-11-22 09:51:52 +00:00
import WithTooltip from '~/components/ui/Tooltip';
import { IconButton } from '~/components/ui/IconButton';
import React from 'react';
2024-11-22 22:29:16 +00:00
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>
);
};