"use client"; import { Confirmation, ConfirmationAccepted, ConfirmationRejected, ConfirmationRequest, ConfirmationTitle, } from "@/components/ai-elements/confirmation"; import { CheckIcon, XIcon } from "lucide-react"; import { nanoid } from "nanoid"; const Example = () => (
This tool wants to delete the file{" "} /tmp/example.txt . Do you approve this action? You approved this tool execution You rejected this tool execution
); export default Example;