An example of creating a circular color picker with dots that react to cursor movement with soft springs using Motion for React.
"use client" import ColorPicker from "@/components/ui/motion-color-picker" export default function Default() { return ( <div className="motion-example flex w-full items-center justify-center p-16"> <ColorPicker /> </div> ) }