2025-08-20 04:12:49 -06:00

11 lines
256 B
TypeScript

import { BubbleBackground } from '@/registry/backgrounds/bubble';
export const BubbleBackgroundDemo = () => {
return (
<BubbleBackground
interactive
className="absolute inset-0 flex items-center justify-center rounded-xl"
/>
);
};