import { forwardRef, type SVGProps } from "react"; import { cn } from "@/lib/utils"; const NextjsLight = forwardRef>( ({ className, ...props }, ref) => ( ), ); NextjsLight.displayName = "NextjsLight"; const NextjsDark = forwardRef>( ({ className, ...props }, ref) => ( ), ); NextjsDark.displayName = "NextjsDark"; const ReactJs = forwardRef>( ({ className, ...props }, ref) => ( {" "} ), ); ReactJs.displayName = "ReactJs"; const TailwindCss = forwardRef>( ({ className, ...props }, ref) => ( ), ); TailwindCss.displayName = "TailwindCss"; const LuciaAuth = forwardRef>( ({ className, ...props }, ref) => ( ), ); LuciaAuth.displayName = "LuciaAuth"; const Drizzle = forwardRef>( ({ className, ...props }, ref) => ( ), ); Drizzle.displayName = "Drizzle"; const TRPC = forwardRef>(({ className, ...props }, ref) => ( )); TRPC.displayName = "TRPC"; const ShadcnUi = forwardRef>( ({ className, ...props }, ref) => ( ), ); ShadcnUi.displayName = "ShadcnUi"; const ReactEmail = forwardRef>( ({ className, ...props }, ref) => ( ), ); ReactEmail.displayName = "ReactEmail"; const StripeLogo = forwardRef>( ({ className, ...props }, ref) => ( ), ); StripeLogo.displayName = "StripeLogo"; export { Drizzle, LuciaAuth, NextjsDark, NextjsLight, ReactEmail, ReactJs, ShadcnUi, StripeLogo, TailwindCss, TRPC, };