diff options
| author | l3wdfut4pwr <l3wdfut4pwr@gmail.com> | 2026-05-03 17:18:46 +0300 |
|---|---|---|
| committer | l3wdfut4pwr <l3wdfut4pwr@gmail.com> | 2026-05-03 17:18:46 +0300 |
| commit | 1a9086852aad17afba4574ad0c814bda4ea2f89d (patch) | |
| tree | 6f346be13733f8eb575bc531d60ed3b002c180e0 /src/components/upload/Switches.tsx | |
| parent | e619245f1fa83a29a9ec553ef9017871bb5c27c0 (diff) | |
minor upload update
Diffstat (limited to 'src/components/upload/Switches.tsx')
| -rw-r--r-- | src/components/upload/Switches.tsx | 24 |
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> + ); +} |
