@etsoo/materialui
Version:
TypeScript Material-UI Implementation
15 lines (14 loc) • 488 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { MUGlobal } from "./MUGlobal";
import { OptionGroup } from "./OptionGroup";
/**
* Search OptionGroup
* @param props Props
* @returns Component
*/
export function SearchOptionGroup(props) {
// Destruct
const { row = true, size = MUGlobal.searchFieldSize, sx = { "& .MuiFormLabel-root": { fontSize: "0.75em" } }, ...rest } = props;
// Layout
return _jsx(OptionGroup, { row: row, size: size, sx: sx, ...rest });
}