@angelineuniverse/design
Version:
Angeline Design UI Library
16 lines (15 loc) • 390 B
text/typescript
import React from "react";
type InputSize = "small" | "medium" | "large";
export interface ModelSelectSearch {
label: string;
size?: InputSize;
value?: any;
value_label?: any;
className?: string;
placeholder?: string;
isRequired?: boolean;
readonly?: boolean;
openChildren?: boolean;
children?: React.ReactNode;
search_method: (e:any) => void;
}