mfg-ui-components
Version:
React UI library with reusable components
10 lines (9 loc) • 327 B
TypeScript
import React from 'react';
import './Select.scss';
export interface Props {
optionValue: any;
optionLabel: any;
selectOptionStyle?: React.CSSProperties;
}
declare const SelectOptions: ({ optionValue, optionLabel, selectOptionStyle }: Props) => import("react/jsx-runtime").JSX.Element;
export default SelectOptions;