import { Button } from "@/components/ui/button"; import { HugeiconsIcon } from "@hugeicons/react"; import { KeyframeIcon } from "@hugeicons/core-free-icons"; import { cn } from "@/utils/ui"; export function KeyframeToggle({ isActive, isDisabled = false, title, onToggle, }: { isActive: boolean; isDisabled?: boolean; title: string; onToggle: () => void; }) { return ( ); }