aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Control/Checkbox.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Control/Checkbox.vue')
-rw-r--r--src/components/Control/Checkbox.vue42
1 files changed, 0 insertions, 42 deletions
diff --git a/src/components/Control/Checkbox.vue b/src/components/Control/Checkbox.vue
deleted file mode 100644
index e0325e7..0000000
--- a/src/components/Control/Checkbox.vue
+++ /dev/null
@@ -1,42 +0,0 @@
-<script setup lang="ts">
-const model = defineModel();
-
-defineProps({
- id: String,
- label: String,
- description: String,
-});
-
-</script>
-
-<template>
- <div class="checkbox">
- <label id="wrapper" :for="id">
- <input :id="id" type="checkbox" v-model="model" />
- <span id="label">{{ label }}</span>
- <span id="description">{{ description }}</span>
- </label>
- </div>
-</template>
-
-<style scoped>
-#label {
- display: block;
- font-weight: bold;
-}
-
-#description {
- display: block;
- font-size: 0.8em;
-}
-
-input {
- float: left;
- margin: 5px 0 0 -20px;
-}
-
-.checkbox {
- padding: 0 0 0 20px;
-}
-
-</style> \ No newline at end of file