legends810/testingnew
0
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 