Toggle

The RhToggle is a component that provides a toggle switch for selecting between two options. The component is designed to be flexible and customizable, with support for different styles and animations.

Usage

Once installed, you can import the RhToggle component into your React application:

copy
import {RhToggle} from "@rhythm-ui/react"

Then, you can use the RhToggle component in your JSX code:

copy
<RhToggle inset={false} />

Toggle Props

insetbooleanfalseShow inset variant of toggle
refRef<HTMLInputElement>Allows getting a ref to the component instance. Once the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref). @see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom
keyKey

inset

The RhToggle component will be displayed with an inset style, which features a subtle gradient background and rounded corners. When set to false or omitted, the component will be displayed with a default style.

copy
<RhToggle inset={true} />