It's not a bug – it's an undocumented feature.
Installation
Copy and paste the following code into your project.
components/snippet/circle-text.tsx
"use client";
import React from "react";
import { motion } from "framer-motion";
interface CircleTextProps {
text: string;
}
export const CircleText: React.FC<CircleTextProps> = ({ text }) => {
return (
<div className="grid place-content-center bg-emerald-950 px-4 py-24 text-gray-50">
<h1 className="max-w-2xl text-center text-5xl leading-snug">
It's not a bug – it's an{" "}
<span className="relative">
{text}
<svg
viewBox="0 0 286 73"
fill="none"
className="absolute -left-2 -right-2 -top-2 bottom-0 translate-y-[-1rem]"
>
<motion.path
initial={{ pathLength: 0 }}
whileInView={{ pathLength: 1 }}
transition={{
duration: 1.25,
ease: "easeInOut",
}}
d="M142.293 1C106.854 16.8908 6.08202 7.17705 1.23654 43.3756C-2.10604 68.3466 29.5633 73.2652 122.688 71.7518C215.814 70.2384 316.298 70.689 275.761 38.0785C230.14 1.37835 97.0503 24.4575 52.9384 1"
stroke="#4CAF50"
strokeWidth="3"
/>
</svg>
</span>{" "}
feature.
</h1>
</div>
);
};