crm/frontend/src/components/Icons/TaskPriorityIcon.vue
2023-09-29 18:43:24 +05:30

24 lines
455 B
Vue

<template>
<div class="grid place-items-center">
<div
class="h-3 w-3 rounded-full"
:class="{
'bg-red-500': priority === 'High',
'bg-yellow-500': priority === 'Medium',
'bg-gray-300': priority === 'Low',
}, $attrs.class"
></div>
</div>
</template>
<script setup>
defineOptions({
inheritAttrs: false
})
const props = defineProps({
priority: {
type: String,
required: true,
},
})
</script>