Components
Loading preview...
An animated line component with a moving gradient and optional logos at the endpoints.
npx shadcn@latest add https://21st.dev/r/preetsuthar17/gradient-tracingimport { GradientTracing } from "@/components/ui/gradient-tracing";
const Demo = () => (
<GradientTracing
width={200}
height={200}
path="M100,0 L75,75 L125,75 L50,200 L100,100 L50,100 L100,0"
gradientColors={["#F1C40F", "#F1C40F", "#E67E22"]}
/>
);
export { Demo };