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

8 lines
220 B
TypeScript

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