11 lines
256 B
TypeScript
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"
|
|
/>
|
|
);
|
|
};
|