UNPKG

@tolokoban/ui

Version:

React components with theme

15 lines 623 B
import React from "react"; import { ChildStyleProps } from "../../theme/styles/child.js"; import { ViewWithValue } from "../../types.js"; import { GenericIconProps } from "../icons/generic/index.js"; export interface InputImageProps extends ViewWithValue<string | undefined>, ChildStyleProps { className?: string; label?: React.ReactNode; /** Image width */ width: number; /** Image height */ height: number; busyIcon?: React.FC<GenericIconProps>; } export declare function ViewInputImage(props: InputImageProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=InputImage.d.ts.map