Skip to content

Commit ee9b8d5

Browse files
committed
chore: remove class prop
1 parent 383cfc0 commit ee9b8d5

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

app/components/Settings/Toggle.client.vue

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ const props = withDefaults(
55
defineProps<{
66
label?: string
77
description?: string
8-
class?: string
98
justify?: 'between' | 'start'
109
tooltip?: string
1110
tooltipPosition?: 'top' | 'bottom' | 'left' | 'right'
@@ -32,7 +31,6 @@ const id = useId()
3231
:class="[
3332
justify === 'start' ? 'justify-start' : '',
3433
props.reverseOrder ? 'toggle-reverse' : 'toggle-default',
35-
$props.class,
3634
]"
3735
>
3836
<template v-if="props.reverseOrder">

0 commit comments

Comments
 (0)