An iOS-style brightness slider that squishes and stretches as you drag, from the official Motion examples catalog.
"use client" import IosSlider from "@/components/ui/motion-ios-slider" export default function Default() { return ( <div className="motion-example flex w-full items-center justify-center p-6"> <IosSlider /> </div> ) }