CoolFace
Apppublic

legends810/testingnew

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes
ExportChatButton.tsx14 linesDownload Raw Back to chatExportAndImport
1import WithTooltip from '~/components/ui/Tooltip';2import { IconButton } from '~/components/ui/IconButton';3import React from 'react';4 5export const ExportChatButton = ({ exportChat }: { exportChat?: () => void }) => {6  return (7    <WithTooltip tooltip="Export Chat">8      <IconButton title="Export Chat" onClick={() => exportChat?.()}>9        <div className="i-ph:download-simple text-xl"></div>10      </IconButton>11    </WithTooltip>12  );13};14