From c5806c450d1ec2e90a5d7aefa06c84a163ccb335 Mon Sep 17 00:00:00 2001
From: Muhammad Aryo Muzakki <66844553+aryomuzakki@users.noreply.github.com>
Date: Sun, 19 Oct 2025 16:41:16 +0700
Subject: [PATCH] Update Switch snippets to include Label component
Added Label component to Switch component snippets.
---
src/components/switch.md | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/components/switch.md b/src/components/switch.md
index b63f60d..a3a1506 100644
--- a/src/components/switch.md
+++ b/src/components/switch.md
@@ -2,6 +2,7 @@ import -
```jsx
import { Switch } from "@/components/ui/switch"
+import { Label } from "@/components/ui/label"
```
---
@@ -9,5 +10,6 @@ import { Switch } from "@/components/ui/switch"
default -
```jsx
-
+
+
```