import { Alert, AlertDescription, AlertTitle, Button, CriticalIcon } from 'ui' interface ViewAppSheetDangerZoneProps { onDelete: () => void } export function ViewAppSheetDangerZone({ onDelete }: ViewAppSheetDangerZoneProps) { return (

Danger Zone

Delete app Permanently delete this app and all its installations.
) }