This commit is contained in:
marzban-dev
2025-01-13 21:13:58 +03:30
parent 71f4bebe94
commit 684fafad4e
-4
View File
@@ -3,7 +3,6 @@
// types
type Props = {
color: string;
selected ?: boolean;
}
@@ -17,8 +16,5 @@ defineProps<Props>();
<div
class="size-[30px] ring ring-offset-1 rounded-full shadow-black/30 shadow-inner"
:class="selected ? 'ring-black' : 'ring-transparent'"
:style="{
backgroundColor: color,
}"
/>
</template>