@arolariu/components
Version:
A collection of reusable components for React applications, built as ESM & CJS modules with tree shake, minify and bundler optimizations enabled, for the lowest bundle size (import cost)! 😍
8 lines (7 loc) • 399 B
TypeScript
import * as React from "react";
import { HTMLMotionProps, type Transition } from "motion/react";
interface GradientBackgroundProps extends HTMLMotionProps<"div"> {
transition?: Transition;
}
declare const GradientBackground: React.ForwardRefExoticComponent<Omit<GradientBackgroundProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
export { GradientBackground, type GradientBackgroundProps };