We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be0373c commit 60b4726Copy full SHA for 60b4726
src/components/Image/Image.d.ts
@@ -1,6 +1,6 @@
1
import { ReactNode } from "react";
2
export interface ImageProps {
3
- src: string,
+ animationDuration?: number,
4
aspectRatio?: number,
5
color?: string,
6
disableError?: boolean,
@@ -10,6 +10,7 @@ export interface ImageProps {
10
imageStyle?: object,
11
loading?: ReactNode,
12
onClick?: (event:React.MouseEvent<HTMLElement> ) => any,
13
+ src: string,
14
style?: object
15
}
16
declare const ImageComponent: React.ComponentType<ImageProps>;
0 commit comments