import { AnimatePresence, motion } from 'framer-motion' import { RotateCcw } from 'lucide-react' import { DialogSection, WarningIcon } from 'ui' interface DiskMangementRestartRequiredSectionProps { visible: boolean title: string description: string } export const DiskMangementRestartRequiredSection = ({ visible, title, description, }: DiskMangementRestartRequiredSectionProps) => { return ( {visible && (

{title}

{description}

)}
) }