@kubit-ui-web/react-components
Version:
Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience
10 lines • 325 B
JavaScript
export const createOption = ({ value, label, selected }) => {
const optionElement = document.createElement('option');
optionElement.value = value;
optionElement.text = label;
if (selected) {
optionElement.selected = selected;
}
return optionElement;
};
//# sourceMappingURL=createOption.js.map