react-bootstrap-typeahead
Version:
React typeahead with Bootstrap styling
15 lines (12 loc) • 301 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.isSizeLarge = isSizeLarge;
exports.isSizeSmall = isSizeSmall;
function isSizeLarge(size) {
return size === 'large' || size === 'lg';
}
function isSizeSmall(size) {
return size === 'small' || size === 'sm';
}