This repository has been archived on 2025-03-16. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
boilerplate/frontend/src/components/checkboxes/Checkbox.vue
2025-03-08 22:32:53 -08:00

15 lines
254 B
Vue

<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>