@slashid/react-primitives
Version:
Primitive components for the /id React SDK
7 lines • 311 B
TypeScript
import type { BaseInputProps } from "./input.base";
export type UncontrolledInputProps = Omit<BaseInputProps, "onChange" | "value"> & {
defaultValue: string;
className?: string;
};
export declare const UncontrolledInput: React.FC<UncontrolledInputProps>;
//# sourceMappingURL=input.uncontrolled.d.ts.map