@vnmfify/core
Version:
```shell npm i @vnmfify/core -S ```
19 lines (18 loc) • 584 B
TypeScript
import { ITouchEvent } from "@vnxjs/components";
import { ViewProps } from "@vnxjs/components/types/View";
import { ReactNode } from "react";
import { ImageMode } from "../image";
interface UploaderImageProps extends ViewProps {
className?: string;
type?: string;
url?: string;
name?: string;
removable?: boolean;
mode?: ImageMode;
alt?: string;
round?: boolean;
children?: ReactNode;
onRemove?(event: ITouchEvent): void;
}
declare function UploaderImage(props: UploaderImageProps): JSX.Element;
export default UploaderImage;