@etsoo/materialui
Version:
TypeScript Material-UI Implementation
18 lines (17 loc) • 657 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SearchOptionGroup = SearchOptionGroup;
const jsx_runtime_1 = require("react/jsx-runtime");
const MUGlobal_1 = require("./MUGlobal");
const OptionGroup_1 = require("./OptionGroup");
/**
* Search OptionGroup
* @param props Props
* @returns Component
*/
function SearchOptionGroup(props) {
// Destruct
const { row = true, size = MUGlobal_1.MUGlobal.searchFieldSize, sx = { "& .MuiFormLabel-root": { fontSize: "0.75em" } }, ...rest } = props;
// Layout
return (0, jsx_runtime_1.jsx)(OptionGroup_1.OptionGroup, { row: row, size: size, sx: sx, ...rest });
}