worked on GarageApp stuff
This commit is contained in:
parent
60aaf17af3
commit
eb606572b0
51919 changed files with 2168177 additions and 18 deletions
22
node_modules/@mui/material/ButtonBase/TouchRipple.d.ts
generated
vendored
Normal file
22
node_modules/@mui/material/ButtonBase/TouchRipple.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
import * as React from 'react';
|
||||
import { InternalStandardProps as StandardProps } from "../internal/index.js";
|
||||
import { TouchRippleClasses, TouchRippleClassKey } from "./touchRippleClasses.js";
|
||||
export { TouchRippleClassKey };
|
||||
export interface StartActionOptions {
|
||||
pulsate?: boolean;
|
||||
center?: boolean;
|
||||
}
|
||||
export interface TouchRippleActions {
|
||||
start: (event?: React.SyntheticEvent, options?: StartActionOptions, callback?: () => void) => void;
|
||||
pulsate: (event?: React.SyntheticEvent) => void;
|
||||
stop: (event?: React.SyntheticEvent, callback?: () => void) => void;
|
||||
}
|
||||
export type TouchRippleProps = StandardProps<React.HTMLAttributes<HTMLElement>> & {
|
||||
center?: boolean;
|
||||
/**
|
||||
* Override or extend the styles applied to the component.
|
||||
*/
|
||||
classes?: Partial<TouchRippleClasses>;
|
||||
};
|
||||
declare const TouchRipple: React.ForwardRefRenderFunction<TouchRippleActions, TouchRippleProps>;
|
||||
export default TouchRipple;
|
||||
Loading…
Add table
Add a link
Reference in a new issue