A neobrutalist on/off toggle switch with thick borders and a hard-edged thumb, including a disabled state, for settings and forms.
"use client"; import { Switch } from "@/components/ui/switch-style-disabled"; import React from "react"; export default function SwitchStyleDisabled() { return ( <div className="flex items-center space-x-2"> <Switch id="notification" disabled /> </div> ); }