Components
npx shadcn@latest add https://21st.dev/r/shugar/switchLoading preview...
import { Switch } from "@/components/ui/switch";
import { Tooltip } from "@/components/ui/tooltip-1";
export default function TooltipDemo() {
return (
<Switch>
<Tooltip text="View Source" className="h-full">
<Switch.Control
defaultChecked
label="Source"
name="tooltip"
size="large"
value="source"
/>
</Tooltip>
<Tooltip text="View Output" className="h-full">
<Switch.Control
label="Output"
name="tooltip"
size="large"
value="output"
/>
</Tooltip>
</Switch>
);
}
Loading preview...
Loading preview...
Loading preview...
Loading preview...
Loading preview...