x
    
    1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<div class="FormControl width-full FormControl--fullWidth">  <label for="my-select-list" class="FormControl-label">    Favorite place to visit  </label>  <div class="FormControl-select-wrap" data-multiple="false">    <select id="my-select-list" aria-describedby="validation-0e40539f-f47c-4853-9c71-b69721acd292 caption-0e40539f-f47c-4853-9c71-b69721acd292" class="FormControl-select" name="my-select-list"><option value="lopez">Lopez Island</option>      <option value="shaw">Shaw Island</option>      <option value="orcas">Orcas Island</option>      <option value="san_juan">San Juan Island</option></select>  </div>  <div class="FormControl-inlineValidation" id="validation-0e40539f-f47c-4853-9c71-b69721acd292" hidden="hidden">    <span class="FormControl-inlineValidation--visual" data-target="" hidden><svg aria-hidden="true" height="12" viewBox="0 0 12 12" version="1.1" width="12" data-view-component="true" class="octicon octicon-check-circle-fill">        <path d="M6 0a6 6 0 1 1 0 12A6 6 0 0 1 6 0Zm-.705 8.737L9.63 4.403 8.392 3.166 5.295 6.263l-1.7-1.702L2.356 5.8l2.938 2.938Z"></path>      </svg></span>    <span class=" FormControl-inlineValidation--visual" data-target=""><svg aria-hidden="true" height="12" viewBox="0 0 12 12" version="1.1" width="12" data-view-component="true" class="octicon octicon-alert-fill">        <path d="M4.855.708c.5-.896 1.79-.896 2.29 0l4.675 8.351a1.312 1.312 0 0 1-1.146 1.954H1.33A1.313 1.313 0 0 1 .183 9.058ZM7 7V3H5v4Zm-1 3a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"></path>      </svg></span>    <span></span>  </div>  <span class="FormControl-caption" id="caption-0e40539f-f47c-4853-9c71-b69721acd292">They're all good</span></div>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
system_arguments = {  name: name,  id: id,  label: label,  caption: caption,  required: required,  multiple: multiple,  visually_hide_label: visually_hide_label,  size: size,  full_width: full_width,  disabled: disabled,  invalid: invalid,  validation_message: validation_message}render(Primer::Alpha::Select.new(**system_arguments)) do |component|  component.option(label: "Lopez Island", value: "lopez")  component.option(label: "Shaw Island", value: "shaw")  component.option(label: "Orcas Island", value: "orcas")  component.option(label: "San Juan Island", value: "san_juan")endNo notes provided.
| Param | Description | Input | 
|---|---|---|
| — |  | |
| — |  | |
| — |  | |
| — |  | |
| — |  | |
| — |  | |
| — |  | |
| — |  | |
| — |  | |
| — |  | |
| — |  | |
| — |  | 
No assets to display.