mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-06-06 20:37:32 +00:00
29 lines
816 B
Vue
29 lines
816 B
Vue
<script setup lang="ts">
|
|
import { CheckCircleIcon } from '@heroicons/vue/20/solid';
|
|
import { computed } from 'vue';
|
|
import { twMerge } from 'tailwind-merge';
|
|
|
|
const props = defineProps<{
|
|
name: string;
|
|
selected: boolean;
|
|
}>();
|
|
|
|
const iconClasses = computed(() => {
|
|
if (props.selected) {
|
|
return 'text-accent-200';
|
|
} else {
|
|
return 'text-card-border';
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
class="flex items-center space-x-3 w-full px-3 py-2.5 text-start text-sm font-medium leading-5 text-white hover:bg-card-background-active focus:outline-none focus:bg-card-background-active transition duration-150 ease-in-out">
|
|
<CheckCircleIcon :class="twMerge(iconClasses, 'w-5')"></CheckCircleIcon>
|
|
<span>{{ name }}</span>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped></style>
|