@icoms-detection/ui
Version:
This is the OFFICIAL UI library created by Icoms Detection to design their apps.
10 lines (9 loc) • 326 B
TypeScript
import { ComponentProps, FC } from "react";
import { StyledText } from "../stitches/text";
declare type StitchesTextProps = ComponentProps<typeof StyledText>;
export interface InputProps extends StitchesTextProps {
isExtra?: boolean;
isError?: boolean;
}
export declare const Text: FC<InputProps>;
export {};