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

8 lines
224 B
TypeScript

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