@activecollab/components
Version:
ActiveCollab Components
13 lines • 547 B
TypeScript
import React from "react";
import { InputProps } from "./Input";
export interface InputUrlProps extends Omit<InputProps, "type" | "startAdornment" | "onChange" | "value" | "size"> {
/** Input value */
value?: string;
/** onChange function */
onChange?: (val: string) => void;
/** Input size */
size?: "regular" | "big" | "biggest";
scheme?: string[] | string;
}
export declare const InputUrl: React.ForwardRefExoticComponent<InputUrlProps & React.RefAttributes<HTMLInputElement>>;
//# sourceMappingURL=InputUrl.d.ts.map