Skip to content

Instantly share code, notes, and snippets.

View realwitt's full-sized avatar
🖖
vim long and prosper

Elias Witt realwitt

🖖
vim long and prosper
View GitHub Profile
@realwitt
realwitt / discord-switch.tsx
Created September 4, 2025 14:01 — forked from noahvember/discord-switch.tsx
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