# `ui:select` (string $name, array $list, $value = null, array $attributes = [], bool $strictComparison = true)

Built on top of `ui:input`.

The following attributes are assigned by this extension :

- `'class' => "ui-select"` 
- `'type' => "select"`

and will typically be rendered such as :
```html
<input class="ui-select" type="select" value="$value" name="$name">
```