import { cn } from "@lib/utils"
import { SquareIcon } from "lucide-react"
export function SendButton({
onClick,
disabled,
}: {
onClick: () => void
disabled: boolean
}) {
return (
)
}
export function StopButton({ onClick }: { onClick: () => void }) {
return (
)
}