MCPcopy Index your code
hub / github.com/reactstrap/reactstrap / FadeProps

Interface FadeProps

types/lib/Fade.d.ts:4–20  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2import { CSSModule } from './utils';
3
4export interface FadeProps extends React.HTMLAttributes<HTMLElement> {
5 [key: string]: any;
6 in?: boolean;
7 baseClass?: string;
8 baseClassIn?: string;
9 tag?: React.ElementType;
10 cssModule?: CSSModule;
11 transitionAppearTimeout?: number;
12 transitionEnterTimeout?: number;
13 transitionLeaveTimeout?: number;
14 transitionAppear?: boolean;
15 transitionEnter?: boolean;
16 transitionLeave?: boolean;
17 onLeave?: () => void;
18 onEnter?: () => void;
19 innerRef?: React.Ref<HTMLElement>;
20}
21
22declare class Fade extends React.Component<FadeProps> {}
23export default Fade;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…