Switch

Displays a callout for user attention.

switch-example

React

import { Switch } from "@backend-ai/ui/components";

const SwitchExample = () => {
  return (
    <div className="flex items-center space-x-2">
      <Switch id="airplane-mode" />
      <label htmlFor="airplane-mode">Airplane Mode</label>
    </div>
  );
};

export default SwitchExample;