InputCheckBox Example :

```jsx
const open = () => {
    alert('agree term and condition pop-up')
}
const open1 = () => {
    alert('policy pop-up')
}

const inputCheckboxArray = [
    { Labelindex: '1', isLink: true, label: 'We will ', functionName: null },
    { Labelindex: '2', isLink: false, label: 'agree term and condition ', functionName: open },
    { Labelindex: '3', isLink: true, label: 'of your ', functionName: null },
    { Labelindex: '4', isLink: false, label: 'policy ', functionName: open1 }
];

            <div>
<InputCheckBox id="chkTermsLink" label={inputCheckboxArray} value="terms" islinkwithtext={'true'} />
 <InputCheckBox id="chkGDPR" normallabel="Agree GDPR." value="gdpr" disabled />
   </div>


```
