import React from 'react'; import { Box, Checkbox, FormControlLabel, Typography } from '@mui/material'; const CheckboxWithDesc = ({ title, description, checked, onChange }: { title: string; description: string; checked: boolean; onChange: (value: boolean) => void; }) => { const handleChange = (event: React.ChangeEvent) => { onChange(event.target.checked); }; return ( } label={title} /> {description} ); }; export default CheckboxWithDesc;