fix: many
This commit is contained in:
15
frontend/src/components/checkboxes/Checkbox.vue
Normal file
15
frontend/src/components/checkboxes/Checkbox.vue
Normal file
@@ -0,0 +1,15 @@
|
||||
<script setup lang="ts">
|
||||
defineProps<{
|
||||
checked: boolean
|
||||
}>()
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<input type="checkbox" class="cursor-pointer" :checked />
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
input[type="checkbox"] {
|
||||
accent-color: var(--p-primary-color);
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user