woi-react-components
Version:
This project requires NodeJS (version 18 or later) and NPM. [Node](http://nodejs.org/) and [NPM](https://npmjs.org/) are really easy to install. To make sure you have them available on your machine, try running the following command. ```sh $ npm -v &
28 lines (27 loc) • 1.45 kB
TypeScript
/// <reference types="react" />
type Props = {
variant: {
borderWidth?: number;
borderType?: string;
isSuccess: boolean;
isError: boolean;
borderColor?: string;
fontFamily?: string;
color?: string;
backgroundColor?: string;
borderRadius?: number;
fontSize?: number;
fontWeight?: string;
isDisabled?: boolean;
placeholderFontFamily?: string;
placeholderFontSize?: number;
placeholderFontWeight?: string;
placeholderFontDecoration?: string;
placeholderColor?: string;
multline?: number;
};
};
export declare const ContainerWidget: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, Props>>;
export declare const TextFieldWidget: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, Props>>;
export declare const TextAreaWidget: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>, Props>>;
export {};