UNPKG

@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)! 😍

17 lines (16 loc) 568 B
import * as React from "react"; import { type SpringOptions } from "motion/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 };