Select example
With multiple
How it looks (preview)
How to call this example
<%= render "govuk_publishing_components/components/select", {
id: "dropdown-multiple",
label: "My Dropdown",
multiple: true,
options: [
{
text: "Option one",
value: "option1"
},
{
text: "Option two",
value: "option2"
}
]
} %>