@arolariu/components
Version:
🎨 70+ beautiful, accessible React components built on Radix UI. TypeScript-first, tree-shakeable, SSR-ready. Perfect for modern web apps, design systems & rapid prototyping. Zero config, maximum flexibility! ⚡
8 lines • 448 B
TypeScript
import { HTMLMotionProps, type Transition } from "motion/react";
import * as React from "react";
interface GradientBackgroundProps extends HTMLMotionProps<"div"> {
transition?: Transition;
}
declare const GradientBackground: React.ForwardRefExoticComponent<Omit<GradientBackgroundProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
export { GradientBackground, type GradientBackgroundProps };
//# sourceMappingURL=gradient-background.d.ts.map