Files
ad049c79-4178-4a6d-9551-0a0…/src/providers/themeProvider/config/background.ts
2026-02-09 16:35:11 +00:00

16 lines
645 B
TypeScript

import CircleGradientBackground from "@/components/background/CircleGradientBackground";
import AuroraBackground from "@/components/background/AuroraBackground";
import FloatingGradientBackground from "@/components/background/floatingGradientBackground/FloatingGradientBackground";
import type { BackgroundType } from "./types";
interface BackgroundComponentProps {
className?: string;
}
export const backgroundComponents: Record<BackgroundType, React.ComponentType<BackgroundComponentProps> | null> = {
none: null,
circleGradient: CircleGradientBackground,
aurora: AuroraBackground,
floatingGradient: FloatingGradientBackground,
};