mfg-ui-components
Version:
React UI library with reusable components
11 lines (10 loc) • 331 B
TypeScript
import './Select.scss';
export interface Props {
selectClass?: any;
selectId?: any;
selectValue?: any;
children?: any;
onChange?: (event: any) => void;
}
declare const Select: ({ selectClass, selectId, selectValue, children, onChange }: Props) => import("react/jsx-runtime").JSX.Element;
export default Select;