@arolariu/components
Version:
🎨 60+ 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! ⚡
11 lines • 504 B
TypeScript
import * as React from "react";
import { type HTMLMotionProps, type Transition } from "motion/react";
interface RippleButtonProps extends HTMLMotionProps<"button"> {
children: React.ReactNode;
rippleClassName?: string;
scale?: number;
transition?: Transition;
}
declare const RippleButton: React.ForwardRefExoticComponent<Omit<RippleButtonProps, "ref"> & React.RefAttributes<HTMLButtonElement>>;
export { RippleButton, type RippleButtonProps };
//# sourceMappingURL=ripple-button.d.ts.map