@icoms-detection/ui
Version:
This is the OFFICIAL UI library created by Icoms Detection to design their apps.
11 lines (10 loc) • 343 B
TypeScript
import { ComponentProps, FC } from "react";
declare type StitchesLabelledInputProps = ComponentProps<"div">;
export interface LabelledInputProps extends StitchesLabelledInputProps {
label?: string;
extra?: string;
name: string;
error?: string;
}
export declare const LabelledInput: FC<LabelledInputProps>;
export {};