UNPKG

593 BJavaScriptView Raw
1import { __rest } from "tslib";
2import * as React from 'react';
3export const FormSelectOption = (_a) => {
4 var { className = '', value = '', isDisabled = false, label,
5 // eslint-disable-next-line @typescript-eslint/no-unused-vars
6 isPlaceholder = false } = _a, props = __rest(_a, ["className", "value", "isDisabled", "label", "isPlaceholder"]);
7 return (React.createElement("option", Object.assign({}, props, { className: className, value: value, disabled: isDisabled }), label));
8};
9FormSelectOption.displayName = 'FormSelectOption';
10//# sourceMappingURL=FormSelectOption.js.map
\No newline at end of file