@icoms-detection/ui
Version:
This is the OFFICIAL UI library created by Icoms Detection to design their apps.
14 lines (13 loc) • 421 B
TypeScript
import { ComponentProps, FC } from "react";
import { StyledInput } from "../stitches/input";
declare type StitchesInputProps = ComponentProps<typeof StyledInput>;
export interface InputProps extends StitchesInputProps {
inputType?: string;
unit?: string;
min?: number;
max?: number;
step?: number;
inputTypeFileLabel?: string;
}
export declare const Input: FC<InputProps>;
export {};