UNPKG

payzli-ui-aryan

Version:

A custom react components library

17 lines (16 loc) 417 B
export interface ISelectInput { label: any; value: any; [key: string]: any; } export interface IEmptyPlaceholderProps { UiLanguage: string; size: "xs" | "sm" | "md" | "lg"; hidden: boolean; message?: string; imgClass?: string; className?: string; RedIcon?: boolean; children?: JSX.Element; transformPhrase?: (phrase: string, language: string, values: any) => string; }