summaryrefslogtreecommitdiff
path: root/src/components/upload/Switches.tsx
diff options
context:
space:
mode:
authorl3wdfut4pwr <l3wdfut4pwr@gmail.com>2026-05-03 17:18:46 +0300
committerl3wdfut4pwr <l3wdfut4pwr@gmail.com>2026-05-03 17:18:46 +0300
commit1a9086852aad17afba4574ad0c814bda4ea2f89d (patch)
tree6f346be13733f8eb575bc531d60ed3b002c180e0 /src/components/upload/Switches.tsx
parente619245f1fa83a29a9ec553ef9017871bb5c27c0 (diff)
minor upload update
Diffstat (limited to 'src/components/upload/Switches.tsx')
-rw-r--r--src/components/upload/Switches.tsx24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/components/upload/Switches.tsx b/src/components/upload/Switches.tsx
new file mode 100644
index 0000000..76f9d6d
--- /dev/null
+++ b/src/components/upload/Switches.tsx
@@ -0,0 +1,24 @@
+'use client';
+
+import { Switch } from '@/components/ui/switch';
+
+export function Switches() {
+ return (
+ <div className="flex flex-row gap-[20px]">
+ <div className="flex items-center gap-[10px]">
+ <p className="font-medium">NSFW</p>
+ <Switch />
+ </div>
+
+ <div className="flex items-center gap-[10px]">
+ <p className="font-medium">СГЕНЕРИРОВАНО ИИ</p>
+ <Switch />
+ </div>
+
+ <div className="flex items-center gap-[10px]">
+ <p className="font-medium">Я ЯВЛЯЮСЬ АВТОРОМ</p>
+ <Switch />
+ </div>
+ </div>
+ );
+}