Switch

Toggle switch for boolean input.

import { Switch } from "ui-lab-components";
 
export function Example() {
  return <Switch />;
}

Basic Switch

A simple toggle switch component. Use for binary on/off states like enabling features or toggling settings.

import React from 'react';
import { Switch } from 'ui-lab-components';
 
export default function Example() {
  return <Switch />;
}
UI Lab