11 lines
367 B
TypeScript
11 lines
367 B
TypeScript
export function AutoStartSetting() {
|
|
return (
|
|
<div className="inline-flex items-center justify-between px-5 py-4">
|
|
<div className="flex flex-col gap-1">
|
|
<span className="font-medium leading-none text-zinc-200">Auto start</span>
|
|
<span className="text-sm leading-none text-white/50">Auto start at login</span>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|