FieldAutoCompleteOptionIcon.vue 459 B

123456789101112131415161718192021
  1. <!-- Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/ -->
  2. <script setup lang="ts">
  3. import type { AutoCompleteOption } from './types'
  4. const props = defineProps<{
  5. option: AutoCompleteOption
  6. }>()
  7. </script>
  8. <template>
  9. <CommonIcon
  10. v-if="props.option.icon"
  11. :name="props.option.icon"
  12. :fixed-size="{ width: 32, height: 32 }"
  13. :class="{
  14. 'opacity-30': props.option.disabled,
  15. }"
  16. class="mr-4"
  17. />
  18. </template>