A Motion for React SVG path-drawing demo that springs circle, X, and rounded-rect strokes into view, from the official Motion examples catalog.
"use client" import PathDrawing from "@/components/ui/motion-path-drawing" export default function Default() { return ( <div className="motion-example flex w-full items-center justify-center p-8"> <PathDrawing /> </div> ) }