reablocks
Version:
Component library for React
23 lines (22 loc) • 481 B
TypeScript
export interface InputTheme {
base: string;
input: string;
inline: string;
disabled: string;
focused: string;
fullWidth: string;
error: string;
sizes: {
small: string;
medium: string;
large: string;
[key: string]: string;
};
adornment: {
base: string;
start: string;
end: string;
};
}
export declare const inputTheme: InputTheme;
export declare const legacyInputTheme: InputTheme;