Components
This React component renders an SVG icon that looks like a set of sparkles or a starburst. It uses a pure CSS keyframe animation to create a "self-drawing" effect.
Loading preview...
import { AiDesignStudio } from "@/components/ui/animated-svg-sparkle";
export default function DemoOne() {
return (
<div className="w-full bg-[#FFFBF5] dark:bg-black min-h-screen flex items-center justify-center p-4 font-sans">
<AiDesignStudio />
</div>
);;
}