Files
nocodb/packages/nc-gui/components/general/ProjectIcon.vue
sreehari jayaraj 525711f9b9 fix: misc changes
2023-10-03 13:19:16 +00:00

26 lines
427 B
Vue

<script lang="ts" setup>
const { hoverable } = defineProps<{
type?: string
hoverable?: boolean
}>()
</script>
<template>
<GeneralIcon
icon="project"
class="text-[#2824FB] base"
:class="{
'nc-base-icon-hoverable': hoverable,
}"
/>
</template>
<style scoped>
.nc-base-icon {
@apply text-xl;
}
.nc-base-icon-hoverable {
@apply cursor-pointer !hover:bg-gray-200 !hover:bg-opacity-50;
}
</style>