An example of creating a line reveal loading animation with clipPath in Motion for React
"use client" import LoadingLineReveal from "@/components/ui/motion-loading-line-reveal" export default function Default() { return ( <div className="motion-example flex w-full items-center justify-center p-8"> <LoadingLineReveal /> </div> ) }