UNPKG

next-gen-ui

Version:

Next Gen Ui is a home for front-end & UI/Ux developers. We provide all the necessary components required to build a scalable front-end application which suits the user experience in a unique way.

26 lines 1.04 kB
/// <reference types="react" /> import { ComponentSize } from "../../config/sizes"; interface StyledWrapperProps { width: string; innerSize: ComponentSize; } export declare const StyledWrapper: import("styled-components").StyledComponent<"div", any, StyledWrapperProps, never>; interface StyledTextInputProps { innerSize: ComponentSize; disabled: boolean; error: boolean; width: string; withIcon: boolean; withCross: boolean; } export declare const StyledTextInput: import("styled-components").StyledComponent<"input", any, StyledTextInputProps, never>; interface StyledIconProps { innerSize: ComponentSize; } export declare const StyledIcon: import("styled-components").StyledComponent<"div", any, StyledIconProps, never>; interface StyledCrossProps { innerSize: ComponentSize; } export declare const StyledCross: import("styled-components").StyledComponent<(props: import("react").SVGProps<SVGSVGElement>) => JSX.Element, any, StyledCrossProps, never>; export {}; //# sourceMappingURL=styled.d.ts.map