@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! ⚡
17 lines • 615 B
TypeScript
import { type SpringOptions } from "motion/react";
import * as React from "react";
interface BubbleBackgroundProps extends React.HTMLAttributes<HTMLDivElement> {
interactive?: boolean;
transition?: SpringOptions;
colors?: {
first: string;
second: string;
third: string;
fourth: string;
fifth: string;
sixth: string;
};
}
declare const BubbleBackground: React.ForwardRefExoticComponent<BubbleBackgroundProps & React.RefAttributes<HTMLDivElement>>;
export { BubbleBackground, type BubbleBackgroundProps };
//# sourceMappingURL=bubble-background.d.ts.map