UNPKG

soda-material

Version:

A React(>=18) component library that may follow [Material Design 3](https://m3.material.io/components) (a.k.a. Material You)

11 lines (10 loc) 490 B
/// <reference types="react" /> /** * This component is a replacement for <IconButton> when you want the element * only take space of the icon but not for the ripple * This component has ref forwarded. */ export declare const IconRippleButton: import("react").ForwardRefExoticComponent<{ path?: string | undefined; children?: React.ReactNode; } & Omit<import("react").HTMLProps<HTMLElement>, "as" | "ref" | "children" | "path"> & import("react").RefAttributes<HTMLDivElement>>;