1. Component Guide
  2. Form checkboxes
  3. With small checkboxes
Form checkboxes example

With small checkboxes

How it looks (preview)

What is your favourite synonym for small?
Select all that apply.

How to call this example

<%= render "govuk_publishing_components/components/checkboxes", {
  name: "favourite_small_synonym[]",
  heading: "What is your favourite synonym for small?",
  small: true,
  items: [
    {
      label: "Tiny",
      value: "tiny"
    },
    {
      label: "Little",
      value: "little"
    }
  ]
} %>