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

11 lines (10 loc) 461 B
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 };