{"@context":"https://schema.org","@graph":[{"@type":"TechArticle","headline":"Switch","description":"A toggle component that allows users to enable or disable a setting with a smooth transition effect. It provides clear visual feedback for on/off states.","url":"https://intentui.com/docs/components/controls/switch","author":{"@type":"Person","name":"Irsyad","url":"https://x.com/irsyad"},"publisher":{"@type":"Organization","name":"Intent UI","url":"https://intentui.com","logo":{"@type":"ImageObject","url":"https://intentui.com/icon.svg"}},"mainEntityOfPage":{"@type":"WebPage","@id":"https://intentui.com/docs/components/controls/switch"}},{"@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://intentui.com"},{"@type":"ListItem","position":2,"name":"Docs","item":"https://intentui.com/docs"},{"@type":"ListItem","position":3,"name":"Components","item":"https://intentui.com/docs/components"},{"@type":"ListItem","position":4,"name":"Controls","item":"https://intentui.com/docs/components/controls"},{"@type":"ListItem","position":5,"name":"Switch","item":"https://intentui.com/docs/components/controls/switch"}]}]}
import { Description } from "@/components/ui/field"import { Switch, SwitchLabel } from "@/components/ui/switch"
<> <Switch value="profileVisible"> <SwitchLabel>Public profile</SwitchLabel> <Description>Allow others to see your profile.</Description> </Switch> <Switch value="searchEngineIndexing"> <SwitchLabel>Search engine indexing</SwitchLabel> <Description> Allow search engines to index your profile. </Description> </Switch> <Switch defaultSelected value="twoFactor"> <SwitchLabel>Two-factor authentication</SwitchLabel> <Description> Add an extra layer of security to your account. </Description> </Switch> <Switch value="activityStatus"> <SwitchLabel>Show activity status</SwitchLabel> <Description>Let others see when you're online.</Description> </Switch></>