@mui/base
Version:
Base UI is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.
22 lines (20 loc) • 452 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.defaultOptionStringifier = void 0;
const defaultOptionStringifier = option => {
const {
label,
value
} = option;
if (typeof label === 'string') {
return label;
}
if (typeof value === 'string') {
return value;
}
// Fallback string representation
return String(option);
};
exports.defaultOptionStringifier = defaultOptionStringifier;
;