fixed build errors

This commit is contained in:
Emre
2025-10-24 04:17:02 +03:00
parent 3a7aa82ff7
commit 26fbea3ec4
16 changed files with 93 additions and 64 deletions

View File

@@ -1,8 +1,8 @@
"use client";
import { cn } from "@/lib/utils";
import React, { ReactNode } from "react";
import type { CSSProperties, HTMLProps, ReactNode } from "react";
interface AuroraBackgroundProps extends React.HTMLProps<HTMLDivElement> {
interface AuroraBackgroundProps extends HTMLProps<HTMLDivElement> {
children: ReactNode;
showRadialGradient?: boolean;
}
@@ -44,7 +44,7 @@ export const AuroraBackground = ({
"--black": "#000",
"--white": "#fff",
"--transparent": "transparent",
} as React.CSSProperties
} as CSSProperties
}
>
<div