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

8 lines
232 B
TypeScript

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