UNPKG

mfg-ui-components

Version:

React UI library with reusable components

8 lines (7 loc) 236 B
import './Select.scss'; export interface Props { optionValue: any; optionLabel: any; } declare const SelectOptions: ({ optionValue, optionLabel }: Props) => import("react/jsx-runtime").JSX.Element; export default SelectOptions;