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