@makeen.io/material-ui-kit
Version:
Makeen UI components kit. Based on material-ui.
18 lines (17 loc) • 564 B
TypeScript
import { IExtendedTheme } from "../../themes/default";
declare type BaseImageProps = {
theme: IExtendedTheme;
};
declare type ImageWrapperProps = BaseImageProps & {
hasImage?: boolean;
height?: string;
width?: string;
};
export declare type ImagePickerProps = ImageWrapperProps & {
defaultValue?: any;
name: string;
setFormRegister: Function;
setFormValue: Function;
};
declare const _default: ({ defaultValue, height, width, setFormRegister, setFormValue, name, theme, }: ImagePickerProps) => JSX.Element;
export default _default;