8 lines
236 B
TypeScript
8 lines
236 B
TypeScript
import { GradientBackground } from '@/registry/backgrounds/gradient';
|
|
|
|
export const GradientBackgroundDemo = () => {
|
|
return (
|
|
<GradientBackground className="absolute inset-0 flex items-center justify-center rounded-xl" />
|
|
);
|
|
};
|