Checkbox

<.phx_form_for for={%{}} as={:story} :let={f}>
  <.checkbox_input_group form={f} id="checkbox-single-default-checkbox" label="I'm a checkbox"/>
</.phx_form_for>
I'm inlined
<.phx_form_for for={%{}} as={:story} :let={f}>
  <.checkbox_input_group form={f} id="checkbox-single-inline-label" value checkbox_label="I'm inlined"/>
</.phx_form_for>
<.phx_form_for for={%{}} as={:story} :let={f}>
  <.checkbox_input_group form={f} disabled id="checkbox-single-disabled" label="Disabled checkbox" value/>
</.phx_form_for>
Inline label

I can be either true or false 🤔

<.phx_form_for for={%{}} as={:story} :let={f}>
  <.checkbox_input_group
    form={f}
    id="checkbox-single-all-options"
    label="Input group label"
    value
    hint="I can be either true or false 🤔"
    checkbox_label="Inline label"
  />
</.phx_form_for>