Checkbox
Creates a checkbox with toggleable input. The Title and Name attributes can be defined, enabling the passing of true and false values.
<Checkbox
    title="Hide Months 0" 
    name=hide_months_0 
/>Checkbox using Default Value
Defining the checked property will set the initial checkbox value with true and false.
Selected Value: true
<Checkbox
    title="Title of checkbox" 
    name=name_of_checkbox
    checked=true
/>
Selected Value: {inputs.name_of_checkbox}Records Count
   10,000  
 ```sql orders
select 
    COUNT(*) as records_count
from needful_things.orders
WHERE  not ${inputs.exclude_low_value} -- When True, Do not evaluate the next condition
    OR ( 
            ${inputs.exclude_low_value} -- Input is set to false
        AND sales < 10  -- Apply this condition
    )
```
<Checkbox
    title="Exclude low values" 
    name=exclude_low_value
/>
<BigValue fmt=num0 value=records_count data={orders}/>Checkbox
Options
 Required
 Name of the checkbox, used to reference the selected value elsewhere as {inputs.name.value}
Label for the checkbox. If undefined, will default to small checkbox
- Options:
 - string
 
Initial value for checkbox. True value for checked, false for unchecked
- Options:
 - boolean
 
Adds an info icon with description tooltip on hover
- Options:
 - string
 
 