diff options
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> + ); +} |
