react-elegant-ui
Version:
Elegant UI components, made by BEM best practices for react
15 lines (14 loc) • 449 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.withModSelectWidthMax = void 0;
var _compose = require("../../../lib/compose");
var _SelectDesktop = require("../Select@desktop");
require("./Select_width_max.css");
/**
* Modifier to set select width to max size
*/
var withModSelectWidthMax = exports.withModSelectWidthMax = (0, _compose.withClassnameHOC)((0, _SelectDesktop.cnSelect)(), {
width: 'max'
});