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