new feature

This commit is contained in:
ryan
2026-03-03 08:23:29 -05:00
parent 86cc269b3a
commit 97be5262a8
3 changed files with 104 additions and 10 deletions

View File

@@ -0,0 +1,5 @@
export const ToolBubble = ({ text }: { text: string }) => (
<div className="text-sm text-gray-500 italic px-3 py-1 self-start">
{text}
</div>
);