import { Truck } from 'lucide-react' import { Card, CardContent } from 'ui' import { PageSection, PageSectionContent, PageSectionMeta, PageSectionSummary, PageSectionTitle, } from 'ui-patterns/PageSection' import { TransferProjectButton } from './TransferProjectButton' import { useSelectedProjectQuery } from '@/hooks/misc/useSelectedProject' export const TransferProjectPanel = () => { const { data: project } = useSelectedProjectQuery() if (project === undefined) return null return ( Transfer project

Transfer project to another organization

To transfer projects, the owner must be a member of both the source and target organizations.

) }