123456789101112131415161718192021 |
- <!-- Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/ -->
- <script setup lang="ts">
- import type { AutoCompleteOption } from './types'
- const props = defineProps<{
- option: AutoCompleteOption
- }>()
- </script>
- <template>
- <CommonIcon
- v-if="props.option.icon"
- :name="props.option.icon"
- :fixed-size="{ width: 32, height: 32 }"
- :class="{
- 'opacity-30': props.option.disabled,
- }"
- class="mr-4"
- />
- </template>
|