We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 383cfc0 commit ee9b8d5Copy full SHA for ee9b8d5
1 file changed
app/components/Settings/Toggle.client.vue
@@ -5,7 +5,6 @@ const props = withDefaults(
5
defineProps<{
6
label?: string
7
description?: string
8
- class?: string
9
justify?: 'between' | 'start'
10
tooltip?: string
11
tooltipPosition?: 'top' | 'bottom' | 'left' | 'right'
@@ -32,7 +31,6 @@ const id = useId()
32
31
:class="[
33
justify === 'start' ? 'justify-start' : '',
34
props.reverseOrder ? 'toggle-reverse' : 'toggle-default',
35
- $props.class,
36
]"
37
>
38
<template v-if="props.reverseOrder">
0 commit comments