mistui-kit
Version:
**👉 [Try MistUi Live](https://gilded-tanuki-0eb52b.netlify.app/) — interactive playground & docs**
10 lines (9 loc) • 424 B
TypeScript
declare const NumberInput: import("react").ForwardRefExoticComponent<Omit<import("./type").BaseProps, "type"> & {
type?: "number";
iconEnable?: boolean;
value?: number;
step?: number;
onChange?: React.Dispatch<React.SetStateAction<number>> | ((val: number) => void);
shadow?: "xs" | "sm" | "md" | "lg" | "xl" | "xxl";
} & import("react").RefAttributes<HTMLInputElement>>;
export default NumberInput;