export type RevFormInputTextType = "small" | "large" | undefined; export interface RevFormInputTextProps { size?: RevFormInputTextType; placeholder?: string; isIconLeft?: boolean; isIconRight?: boolean; isInvalid?: boolean; id?: string; disabled?: boolean; icon?: string; isNotRoundedFull?: boolean; isNotRoundedRight?: boolean; isNotRoundedLeft?: boolean; inputClass?: string; }