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