import { Card } from '@/components/ui/card'; import { Button } from '@/components/ui/button'; import { Clock, MapPin, AlertCircle, Trash2 } from 'lucide-react'; import { RETENTION_OPTIONS, REGION_OPTIONS } from './types'; import type { RetentionValue, RegionValue } from './types'; interface CloudSettingsViewPreferencesProps { retention: RetentionValue; onRetentionChange: (value: RetentionValue) => void; region: RegionValue; onRegionChange: (value: RegionValue) => void; onEmptyTrash: () => void; } export function CloudSettingsViewPreferences({ retention, onRetentionChange, region, onRegionChange, onEmptyTrash, }: CloudSettingsViewPreferencesProps) { return (

Preferences

Deleted files are permanently removed after this period.

Changing regions requires data migration which may take up to 24 hours.
); }