Skip to content

Instantly share code, notes, and snippets.

@noahvember
noahvember / discord-switch.tsx
Last active September 4, 2025 14:01
A fluidly animated toggle switch input as a shadcn/ui component; inspired by Discord
'use client';
import * as React from 'react';
import * as SwitchPrimitive from '@radix-ui/react-switch';
import { cn } from '@/lib/utils';
function Switch({
className,
onCheckedChange,
...props