Files
Vesktop/src/renderer/components/settings/VesktopSettingsSwitch.tsx
2025-12-12 18:43:30 +01:00

15 lines
480 B
TypeScript

/*
* Vesktop, a desktop app aiming to give you a snappier Discord Experience
* Copyright (c) 2025 Vendicated and Vesktop contributors
* SPDX-License-Identifier: GPL-3.0-or-later
*/
import { FormSwitch } from "@vencord/types/components";
import type { ComponentProps } from "react";
import { cl } from "./Settings";
export function VesktopSettingsSwitch(props: ComponentProps<typeof FormSwitch>) {
return <FormSwitch {...props} hideBorder className={cl("switch")} />;
}