logo

Switch

A switch allows a user to turn a setting on or off.

Usage#

Demo#

import { Switch } from "pigment-ui";

function SwitchDemo() {
  return (
    <Switch defaultSelected>Bluetooth</Switch>
  );
}
Edit this page