Skip to content

Commit

Permalink
fix: naming of className
Browse files Browse the repository at this point in the history
  • Loading branch information
zernonia committed Oct 20, 2023
1 parent cee8d6f commit a4180e9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/components/demo/Switch/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const switchState = ref(false)

<template>
<div class="flex gap-2 items-center">
<label className="text-white text-[15px] leading-none pr-[15px] select-none" for="airplane-mode">
<label class="text-white text-[15px] leading-none pr-[15px] select-none" for="airplane-mode">
Airplane mode
</label>
<SwitchRoot
Expand Down
2 changes: 1 addition & 1 deletion packages/radix-vue/src/Switch/Switch.story.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const switchState = ref(true)
<Variant title="default">
<div class="flex gap-2 items-center">
<label
className="text-white text-[15px] leading-none pr-[15px]"
class="text-white text-[15px] leading-none pr-[15px]"
for="airplane-mode"
>
Airplane mode
Expand Down

0 comments on commit a4180e9

Please sign in to comment.