import React from 'react'; interface FormCheckboxProps { id: string; label: string; checked: boolean; onChange: (checked: boolean) => void; disabled?: boolean; description?: string; } export default function FormCheckbox({ id, label, checked, onChange, disabled = false, description }: FormCheckboxProps) { return (
{description}
)}