import { InfoIcon } from 'lucide-react' import { useTranslation } from 'react-i18next' import { Button } from '@/components/ui/button' import { CloudCardShell } from './cloud-card-shell' interface CloudFreePlanBannerProps { onViewPlans: () => void } export function CloudFreePlanBanner ({ onViewPlans }: CloudFreePlanBannerProps) { const { t } = useTranslation() return (

{t('PICGO_CLOUD_FREE_PLAN_BANNER')}

) }