aboutsummaryrefslogtreecommitdiff
path: root/src/components/select/select.js
blob: 34d64fd221c4c9c0c4397f28afcafd6e61e8fdb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { library } from '@fortawesome/fontawesome-svg-core'
import {
  faChevronDown
} from '@fortawesome/free-solid-svg-icons'

library.add(
  faChevronDown
)

export default {
  emits: ['update:modelValue'],
  props: [
    'modelValue',
    'disabled',
    'unstyled',
    'kind',
    'attrs'
  ]
}