import { cn } from '@langgenius/dify-ui/cn' type DownloadingIconProps = { active?: boolean className?: string } const DownloadingIcon = ({ active = true, className }: DownloadingIconProps) => { return ( ) } export default DownloadingIcon