aboutsummaryrefslogtreecommitdiffstats
path: root/ui/imports/ui/components/mt-select/mt-select.html
blob: cce89738fffe2f394926a0e766688d2734cacf0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<template name="MtSelect">
  <select class="sm-mt-select {{ classStr }}"
    {{ attrsSelect isDisabled size }}
    >
    {{#each option in options }}
    <option class="cl-mt-select-option"
          value="{{ option.value  }}"
      {{ attrOptSelected option.value selectedValue }}
      >{{ option.label }}
    </option>
    {{/each }}
  </select>
</template>