mui-tel-input 1.3.1 → 1.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -772,13 +772,14 @@ const FlagsMenu = (props) => {
772
772
  langOfCountryName,
773
773
  continents,
774
774
  preferredCountries,
775
+ className,
775
776
  ...rest
776
777
  } = props;
777
778
  return /* @__PURE__ */ jsx(Menu, {
778
779
  anchorEl,
779
780
  open: Boolean(anchorEl),
780
781
  id: "select-country",
781
- className: "MuiTelInput-Menu",
782
+ className: `MuiTelInput-Menu ${className || ""}`,
782
783
  MenuListProps: {
783
784
  role: "listbox",
784
785
  "aria-activedescendant": isoCode ? `country-${isoCode}` : "",