blob: 76f9d6dabf58b11a862f42ce8b07ef4512fab3f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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>
);
}
|