import { ReactNode } from "react" import { FaCloudDownloadAlt } from "react-icons/fa" import { cn } from "@/lib/utils" export function DownloadVideo({ video = "", disabled = false, onClick, children = <>Download }: { video?: string disabled?: boolean onClick: () => void children?: ReactNode }) { return ( <>{ (video && video.length > 128) ?
 {children}
: null} ) }