@sikka/hawa 0.2.41-next → 0.2.42-next

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.
package/dist/index.js CHANGED
@@ -224,6 +224,9 @@ __export(components_exports, {
224
224
  AppStores: function() {
225
225
  return AppStores;
226
226
  },
227
+ BackToTop: function() {
228
+ return BackToTop;
229
+ },
227
230
  Breadcrumb: function() {
228
231
  return Breadcrumb;
229
232
  },
@@ -257,6 +260,9 @@ __export(components_exports, {
257
260
  CodeBlock: function() {
258
261
  return CodeBlock;
259
262
  },
263
+ ColorPicker: function() {
264
+ return ColorPicker;
265
+ },
260
266
  Dialog: function() {
261
267
  return Dialog;
262
268
  },
@@ -281,12 +287,18 @@ __export(components_exports, {
281
287
  DropdownMenu: function() {
282
288
  return DropdownMenu;
283
289
  },
290
+ FileDropzone: function() {
291
+ return FileDropzone;
292
+ },
284
293
  Label: function() {
285
294
  return Label;
286
295
  },
287
296
  Loading: function() {
288
297
  return Loading;
289
298
  },
299
+ PhoneInput: function() {
300
+ return PhoneInput;
301
+ },
290
302
  PinInput: function() {
291
303
  return PinInput;
292
304
  },
@@ -1691,8 +1703,41 @@ var DropdownMenu = function(param) {
1691
1703
  }
1692
1704
  }))));
1693
1705
  };
1694
- // components/elements/PinInput.tsx
1706
+ // components/elements/ColorPicker.tsx
1695
1707
  var import_react11 = __toESM(require("react"));
1708
+ var ColorPicker = function(props) {
1709
+ var _ref = _sliced_to_array((0, import_react11.useState)(props.color), 2), selectedColor = _ref[0], setSelectedColor = _ref[1];
1710
+ return /* @__PURE__ */ import_react11.default.createElement("div", {
1711
+ className: "hawa-flex hawa-w-fit hawa-flex-row hawa-rounded hawa-border hawa-p-0"
1712
+ }, /* @__PURE__ */ import_react11.default.createElement("div", {
1713
+ style: {
1714
+ backgroundColor: selectedColor
1715
+ },
1716
+ className: "hawa-rounded-bl-lg hawa-rounded-tl-lg"
1717
+ }, /* @__PURE__ */ import_react11.default.createElement("input", {
1718
+ type: "color",
1719
+ value: selectedColor,
1720
+ onChange: function(e) {
1721
+ setSelectedColor(e.target.value);
1722
+ if (props.handleChange) {
1723
+ props.handleChange(e);
1724
+ }
1725
+ },
1726
+ className: "hawa-opacity-0"
1727
+ })), /* @__PURE__ */ import_react11.default.createElement("input", {
1728
+ type: "text",
1729
+ onChange: function(e) {
1730
+ setSelectedColor(e.target.value);
1731
+ if (props.handleChange) {
1732
+ props.handleChange(e);
1733
+ }
1734
+ },
1735
+ value: selectedColor,
1736
+ className: "hawa-w-24 hawa-bg-background hawa-rounded-br-lg hawa-rounded-tr-lg hawa-pl-2 hawa-pr-2"
1737
+ }));
1738
+ };
1739
+ // components/elements/PinInput.tsx
1740
+ var import_react12 = __toESM(require("react"));
1696
1741
  var import_clsx5 = __toESM(require("clsx"));
1697
1742
  var PinInput = function(_param) {
1698
1743
  var label = _param.label, icon = _param.icon, digits = _param.digits, _param_width = _param.width, width = _param_width === void 0 ? "normal" : _param_width, getPins = _param.getPins, props = _object_without_properties(_param, [
@@ -1702,7 +1747,7 @@ var PinInput = function(_param) {
1702
1747
  "width",
1703
1748
  "getPins"
1704
1749
  ]);
1705
- var _ref = _sliced_to_array((0, import_react11.useState)(Array.from(Array(digits))), 2), pin = _ref[0], setPin = _ref[1];
1750
+ var _ref = _sliced_to_array((0, import_react12.useState)(Array.from(Array(digits))), 2), pin = _ref[0], setPin = _ref[1];
1706
1751
  var handleKeyDown = function(e, index) {
1707
1752
  var backTo = 0;
1708
1753
  if (e.key === "Backspace") {
@@ -1711,7 +1756,7 @@ var PinInput = function(_param) {
1711
1756
  previousInput === null || previousInput === void 0 ? void 0 : previousInput.focus();
1712
1757
  }
1713
1758
  };
1714
- (0, import_react11.useEffect)(function() {
1759
+ (0, import_react12.useEffect)(function() {
1715
1760
  var unfilled = pin.includes(void 0);
1716
1761
  if (!unfilled && getPins) {
1717
1762
  getPins(pin);
@@ -1736,10 +1781,10 @@ var PinInput = function(_param) {
1736
1781
  }
1737
1782
  }
1738
1783
  };
1739
- return /* @__PURE__ */ import_react11.default.createElement("div", {
1784
+ return /* @__PURE__ */ import_react12.default.createElement("div", {
1740
1785
  className: "hawa-flex hawa-w-full hawa-flex-row hawa-justify-center hawa-gap-2"
1741
1786
  }, pin.map(function(value, index) {
1742
- return /* @__PURE__ */ import_react11.default.createElement("input", _object_spread({
1787
+ return /* @__PURE__ */ import_react12.default.createElement("input", _object_spread({
1743
1788
  key: index,
1744
1789
  type: "text",
1745
1790
  maxLength: 1,
@@ -1760,12 +1805,12 @@ var PinInput = function(_param) {
1760
1805
  }));
1761
1806
  };
1762
1807
  // components/elements/ActionCard.tsx
1763
- var import_react12 = __toESM(require("react"));
1808
+ var import_react13 = __toESM(require("react"));
1764
1809
  var ActionCard = function(props) {
1765
- var _ref = _sliced_to_array((0, import_react12.useState)(false), 2), hovered = _ref[0], setHovered = _ref[1];
1766
- return /* @__PURE__ */ import_react12.default.createElement("div", {
1810
+ var _ref = _sliced_to_array((0, import_react13.useState)(false), 2), hovered = _ref[0], setHovered = _ref[1];
1811
+ return /* @__PURE__ */ import_react13.default.createElement("div", {
1767
1812
  className: "hawa-flex hawa-h-full hawa-w-full hawa-flex-col hawa-gap-1"
1768
- }, /* @__PURE__ */ import_react12.default.createElement("div", {
1813
+ }, /* @__PURE__ */ import_react13.default.createElement("div", {
1769
1814
  className: "hawa-group hawa-relative hawa-h-full hawa-w-full hawa-rounded hawa-border hawa-bg-background hawa-bg-cover hawa-bg-center hawa-transition-all hawa-duration-500 hover:hawa-drop-shadow-2xl",
1770
1815
  style: {
1771
1816
  backgroundImage: "url(".concat(props.blank ? "" : props.cardImage, ")")
@@ -1776,9 +1821,9 @@ var ActionCard = function(props) {
1776
1821
  onMouseLeave: function() {
1777
1822
  return setHovered(false);
1778
1823
  }
1779
- }, props.blank ? /* @__PURE__ */ import_react12.default.createElement("div", {
1824
+ }, props.blank ? /* @__PURE__ */ import_react13.default.createElement("div", {
1780
1825
  className: "hawa-flex hawa-h-full hawa-flex-col hawa-items-center hawa-justify-center "
1781
- }, /* @__PURE__ */ import_react12.default.createElement("svg", {
1826
+ }, /* @__PURE__ */ import_react13.default.createElement("svg", {
1782
1827
  className: "hawa-h-10 hawa-w-10 hawa-text-foreground",
1783
1828
  stroke: "currentColor",
1784
1829
  fill: "currentColor",
@@ -1787,108 +1832,2186 @@ var ActionCard = function(props) {
1787
1832
  height: "1em",
1788
1833
  width: "1em",
1789
1834
  xmlns: "http://www.w3.org/2000/svg"
1790
- }, /* @__PURE__ */ import_react12.default.createElement("path", {
1835
+ }, /* @__PURE__ */ import_react13.default.createElement("path", {
1791
1836
  d: "M19 11h-6V5h-2v6H5v2h6v6h2v-6h6z"
1792
- }))) : /* @__PURE__ */ import_react12.default.createElement("div", {
1837
+ }))) : /* @__PURE__ */ import_react13.default.createElement("div", {
1793
1838
  className: "hawa-absolute hawa-inset-0 hawa-rounded hawa-bg-black hawa-opacity-50"
1794
- }), /* @__PURE__ */ import_react12.default.createElement("div", {
1839
+ }), /* @__PURE__ */ import_react13.default.createElement("div", {
1795
1840
  className: "hawa-absolute hawa-bottom-2 hawa-right-2 hawa-z-10 hawa-opacity-0 hawa-transition-all hawa-duration-200 group-hover:hawa-opacity-100"
1796
- }, props.inCardActions), !props.blank && /* @__PURE__ */ import_react12.default.createElement("div", {
1841
+ }, props.inCardActions), !props.blank && /* @__PURE__ */ import_react13.default.createElement("div", {
1797
1842
  className: "hawa-relative hawa-p-4"
1798
- }, /* @__PURE__ */ import_react12.default.createElement("h1", {
1843
+ }, /* @__PURE__ */ import_react13.default.createElement("h1", {
1799
1844
  className: "hawa-text-white"
1800
- }, props.title), /* @__PURE__ */ import_react12.default.createElement("p", {
1845
+ }, props.title), /* @__PURE__ */ import_react13.default.createElement("p", {
1801
1846
  className: "hawa-text-white"
1802
- }, props.subtitle))), /* @__PURE__ */ import_react12.default.createElement("div", {
1847
+ }, props.subtitle))), /* @__PURE__ */ import_react13.default.createElement("div", {
1803
1848
  className: "hawa-flex hawa-flex-row hawa-justify-between hawa-text-sm hawa-transition-all hawa-duration-200 ".concat(hovered ? "hawa-opacity-100" : "hawa-opacity-0")
1804
1849
  }, props.bottomElement));
1805
1850
  };
1851
+ // components/elements/FileDropzone.tsx
1852
+ var import_react14 = __toESM(require("react"));
1853
+ var import_react_dropzone = require("react-dropzone");
1854
+ var import_clsx6 = __toESM(require("clsx"));
1855
+ var FileDropzone = function(param) {
1856
+ var texts = param.texts, files = param.files, setFiles = param.setFiles, setDeletedFiles = param.setDeletedFiles, onAcceptedFiles = param.onAcceptedFiles, errorMessages = param.errorMessages, maxFiles = param.maxFiles, accept = param.accept, showPreview = param.showPreview, onDeleteFile = param.onDeleteFile, onClearFiles = param.onClearFiles, disclaimer = param.disclaimer, maxSize = param.maxSize, label = param.label, termsLink = param.termsLink, privacyLink = param.privacyLink;
1857
+ var _fileRejections__errors_, _fileRejections_;
1858
+ var _ref = _sliced_to_array((0, import_react14.useState)(0), 2), cmp = _ref[0], setCmp = _ref[1];
1859
+ var _ref1 = _sliced_to_array((0, import_react14.useState)(0), 2), max = _ref1[0], setMax = _ref1[1];
1860
+ var _ref2 = (0, import_react_dropzone.useDropzone)({
1861
+ multiple: true,
1862
+ accept: accept,
1863
+ maxSize: maxSize,
1864
+ maxFiles: maxFiles,
1865
+ onDrop: function(acceptedFiles2) {
1866
+ setFiles(acceptedFiles2.map(function(file, index) {
1867
+ return Object.assign(file, {
1868
+ preview: URL.createObjectURL(file)
1869
+ });
1870
+ }));
1871
+ }
1872
+ }), getRootProps = _ref2.getRootProps, getInputProps = _ref2.getInputProps, fileRejections = _ref2.fileRejections, acceptedFiles = _ref2.acceptedFiles, isDragActive = _ref2.isDragActive;
1873
+ (0, import_react14.useEffect)(function() {
1874
+ return function() {
1875
+ files === null || files === void 0 ? void 0 : files.forEach(function(file) {
1876
+ URL.revokeObjectURL(file.preview);
1877
+ });
1878
+ };
1879
+ }, [
1880
+ files
1881
+ ]);
1882
+ (0, import_react14.useEffect)(function() {
1883
+ setFiles(acceptedFiles);
1884
+ }, [
1885
+ acceptedFiles,
1886
+ cmp
1887
+ ]);
1888
+ onClearFiles = function() {
1889
+ acceptedFiles.length = 0;
1890
+ acceptedFiles.splice(0, acceptedFiles.length);
1891
+ setFiles([]);
1892
+ };
1893
+ var clearAllFiles = function() {
1894
+ acceptedFiles.length = 0;
1895
+ setFiles([]);
1896
+ };
1897
+ (0, import_react14.useEffect)(function() {
1898
+ if (maxSize > 0) {
1899
+ var k = 1024;
1900
+ var sizes = [
1901
+ "Bytes",
1902
+ "KB",
1903
+ "MB",
1904
+ "GB",
1905
+ "TB",
1906
+ "PB",
1907
+ "EB",
1908
+ "ZB",
1909
+ "YB"
1910
+ ];
1911
+ var i = Math.floor(Math.log(maxSize) / Math.log(1024));
1912
+ setMax(parseFloat((maxSize / Math.pow(1024, i)).toFixed(2)) + " " + sizes[i]);
1913
+ }
1914
+ }, [
1915
+ maxSize
1916
+ ]);
1917
+ var errs = fileRejections.map(function(rej, i) {
1918
+ switch(rej.errors[0].code){
1919
+ case "file-too-large":
1920
+ return /* @__PURE__ */ import_react14.default.createElement(Alert, {
1921
+ text: rej.file.name,
1922
+ title: texts.fileTooLarge,
1923
+ severity: "error"
1924
+ });
1925
+ case "too-many-files":
1926
+ return /* @__PURE__ */ import_react14.default.createElement(Alert, {
1927
+ text: rej.file.name,
1928
+ title: texts.tooManyFiles,
1929
+ severity: "error"
1930
+ });
1931
+ case "file-invalid-type":
1932
+ return /* @__PURE__ */ import_react14.default.createElement(Alert, {
1933
+ text: rej.file.name,
1934
+ title: texts.invalidFileType,
1935
+ severity: "error"
1936
+ });
1937
+ default:
1938
+ return /* @__PURE__ */ import_react14.default.createElement(Alert, {
1939
+ text: rej.file.name,
1940
+ title: rej.errors[0].code,
1941
+ severity: "error"
1942
+ });
1943
+ }
1944
+ });
1945
+ var thumbs = files === null || files === void 0 ? void 0 : files.map(function(file, index) {
1946
+ return /* @__PURE__ */ import_react14.default.createElement("div", {
1947
+ className: "hawa-relative hawa-rounded"
1948
+ }, /* @__PURE__ */ import_react14.default.createElement("button", {
1949
+ onClick: function(e) {
1950
+ e.stopPropagation();
1951
+ acceptedFiles.splice(acceptedFiles.indexOf(file), 1);
1952
+ setCmp(Math.random);
1953
+ onDeleteFile(file);
1954
+ },
1955
+ type: "button",
1956
+ className: "hawa-absolute hawa-left-0 hawa-ml-auto hawa-inline-flex hawa-items-center hawa-rounded-inner hawa-rounded-bl-none hawa-rounded-tr-none hawa-bg-gray-900 hawa-p-1.5 hawa-text-sm hawa-text-gray-400 hawa-transition-all hover:hawa-bg-gray-200 hover:hawa-text-gray-900 dark:hover:hawa-bg-gray-600 dark:hover:hawa-text-white",
1957
+ "data-modal-toggle": "defaultModal"
1958
+ }, /* @__PURE__ */ import_react14.default.createElement("svg", {
1959
+ "aria-hidden": "true",
1960
+ className: "hawa-h-5 hawa-w-5",
1961
+ fill: "currentColor",
1962
+ viewBox: "0 0 20 20"
1963
+ }, /* @__PURE__ */ import_react14.default.createElement("path", {
1964
+ fillRule: "evenodd",
1965
+ d: "M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z",
1966
+ clipRule: "evenodd"
1967
+ })), /* @__PURE__ */ import_react14.default.createElement("span", {
1968
+ className: "hawa-sr-only"
1969
+ }, "Close modal")), /* @__PURE__ */ import_react14.default.createElement("div", {
1970
+ style: {
1971
+ display: "flex",
1972
+ justifyContent: "center",
1973
+ alignItems: "center",
1974
+ overflow: "hidden",
1975
+ height: 100,
1976
+ width: 100,
1977
+ backgroundImage: "url(".concat(file.preview, ")"),
1978
+ backgroundSize: "cover",
1979
+ backgroundPosition: "center",
1980
+ border: "1px solid black"
1981
+ },
1982
+ className: "hawa-rounded",
1983
+ key: file.name
1984
+ }));
1985
+ });
1986
+ var _texts_disclaimer, _texts_terms, _texts_and, _texts_privacyPolicy;
1987
+ return /* @__PURE__ */ import_react14.default.createElement("div", null, label && /* @__PURE__ */ import_react14.default.createElement("div", {
1988
+ className: "hawa-mb-2 hawa-block hawa-text-sm hawa-font-medium hawa-text-gray-900 dark:hawa-text-gray-300"
1989
+ }, label), /* @__PURE__ */ import_react14.default.createElement("div", {
1990
+ className: (0, import_clsx6.default)("hawa-flex hawa-flex-col hawa-justify-center hawa-rounded hawa-border hawa-border-dashed hawa-p-6 hawa-transition-all ", isDragActive ? "hawa-bg-muted" : "hawa-bg-muted/20 hover:hawa-bg-muted/50 ")
1991
+ }, /* @__PURE__ */ import_react14.default.createElement("div", _object_spread({}, getRootProps({})), /* @__PURE__ */ import_react14.default.createElement("p", _object_spread({}, getInputProps())), /* @__PURE__ */ import_react14.default.createElement("div", {
1992
+ className: "hawa-flex hawa-flex-col hawa-items-center hawa-justify-center hawa-gap-2 hawa-pt-4 hawa-text-center"
1993
+ }, /* @__PURE__ */ import_react14.default.createElement("svg", {
1994
+ stroke: "currentColor",
1995
+ fill: "none",
1996
+ strokeWidth: "2",
1997
+ viewBox: "0 0 24 24",
1998
+ strokeLinecap: "round",
1999
+ strokeLinejoin: "round",
2000
+ height: "1.5em",
2001
+ width: "1.5em"
2002
+ }, /* @__PURE__ */ import_react14.default.createElement("path", {
2003
+ stroke: "none",
2004
+ d: "M0 0h24v24H0z",
2005
+ fill: "none"
2006
+ }), /* @__PURE__ */ import_react14.default.createElement("path", {
2007
+ d: "M19 11v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2"
2008
+ }), /* @__PURE__ */ import_react14.default.createElement("path", {
2009
+ d: "M13 13l9 3l-4 2l-2 4l-3 -9"
2010
+ }), /* @__PURE__ */ import_react14.default.createElement("path", {
2011
+ d: "M3 3l0 .01"
2012
+ }), /* @__PURE__ */ import_react14.default.createElement("path", {
2013
+ d: "M7 3l0 .01"
2014
+ }), /* @__PURE__ */ import_react14.default.createElement("path", {
2015
+ d: "M11 3l0 .01"
2016
+ }), /* @__PURE__ */ import_react14.default.createElement("path", {
2017
+ d: "M15 3l0 .01"
2018
+ }), /* @__PURE__ */ import_react14.default.createElement("path", {
2019
+ d: "M3 7l0 .01"
2020
+ }), /* @__PURE__ */ import_react14.default.createElement("path", {
2021
+ d: "M3 11l0 .01"
2022
+ }), /* @__PURE__ */ import_react14.default.createElement("path", {
2023
+ d: "M3 15l0 .01"
2024
+ })), typeof texts.clickHereToUpload === "function" ? texts.clickHereToUpload() : texts.clickHereToUpload), /* @__PURE__ */ import_react14.default.createElement("div", {
2025
+ className: "hawa-pt-2 hawa-text-center hawa-text-xs hawa-select-none"
2026
+ }, texts.acceptedFileTypes, " ", accept.split(",")), /* @__PURE__ */ import_react14.default.createElement("div", {
2027
+ className: "hawa-pb-2 hawa-pt-1 hawa-text-center hawa-text-xs hawa-select-none"
2028
+ }, texts.maxFileSize, " ", max)), acceptedFiles.length > 0 && /* @__PURE__ */ import_react14.default.createElement("div", {
2029
+ className: "hawa-flex hawa-justify-center hawa-rounded-lg hawa-p-2 "
2030
+ }, /* @__PURE__ */ import_react14.default.createElement(Button, {
2031
+ onClick: clearAllFiles
2032
+ }, "Clear All")), acceptedFiles.length > 0 && thumbs && showPreview ? /* @__PURE__ */ import_react14.default.createElement("aside", {
2033
+ className: "hawa-flex hawa-flex-row hawa-flex-wrap hawa-justify-center hawa-gap-2 hawa-rounded-lg hawa-p-2"
2034
+ }, thumbs) : null, /* @__PURE__ */ import_react14.default.createElement("div", {
2035
+ className: "px-4"
2036
+ }, ((_fileRejections_ = fileRejections[0]) === null || _fileRejections_ === void 0 ? void 0 : (_fileRejections__errors_ = _fileRejections_.errors[0]) === null || _fileRejections__errors_ === void 0 ? void 0 : _fileRejections__errors_.code) && errs)), disclaimer && /* @__PURE__ */ import_react14.default.createElement("div", {
2037
+ className: "hawa-mt-2 hawa-text-sm hawa-text-muted-foreground/50"
2038
+ }, (_texts_disclaimer = texts.disclaimer) !== null && _texts_disclaimer !== void 0 ? _texts_disclaimer : "By uploading a file you agree to our", " ", /* @__PURE__ */ import_react14.default.createElement("a", {
2039
+ href: termsLink,
2040
+ className: "clickable-link hawa-text-muted-foreground/50"
2041
+ }, (_texts_terms = texts.terms) !== null && _texts_terms !== void 0 ? _texts_terms : "Terms"), " ", (_texts_and = texts.and) !== null && _texts_and !== void 0 ? _texts_and : "and", " ", /* @__PURE__ */ import_react14.default.createElement("a", {
2042
+ href: privacyLink,
2043
+ className: "clickable-link hawa-text-muted-foreground/50"
2044
+ }, (_texts_privacyPolicy = texts.privacyPolicy) !== null && _texts_privacyPolicy !== void 0 ? _texts_privacyPolicy : "Privacy Policy")));
2045
+ };
2046
+ // components/elements/PhoneInput.tsx
2047
+ var import_react15 = __toESM(require("react"));
2048
+ // components/countries.ts
2049
+ var countries = [
2050
+ {
2051
+ country_label: "Saudi Arabia",
2052
+ code: "SA",
2053
+ unicode: "🇸🇦",
2054
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SA.svg",
2055
+ label: "+966"
2056
+ },
2057
+ {
2058
+ country_label: "United Arab Emirates",
2059
+ code: "AE",
2060
+ unicode: "🇦🇪",
2061
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/AE.svg",
2062
+ label: "+971"
2063
+ },
2064
+ {
2065
+ country_label: "Bahrain",
2066
+ code: "BH",
2067
+ unicode: "🇧🇭",
2068
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BH.svg",
2069
+ label: "+973"
2070
+ },
2071
+ {
2072
+ country_label: "Kuwait",
2073
+ code: "KW",
2074
+ unicode: "🇰🇼",
2075
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/KW.svg",
2076
+ label: "+965"
2077
+ },
2078
+ {
2079
+ country_label: "Qatar",
2080
+ code: "QA",
2081
+ unicode: "🇶🇦",
2082
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/QA.svg",
2083
+ label: "+974"
2084
+ },
2085
+ {
2086
+ country_label: "Oman",
2087
+ code: "OM",
2088
+ unicode: "🇴🇲",
2089
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/OM.svg",
2090
+ label: "+968"
2091
+ },
2092
+ {
2093
+ country_label: "Andorra",
2094
+ value: "Andorra",
2095
+ code: "AD",
2096
+ unicode: "🇦🇩",
2097
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/AD.svg",
2098
+ label: "+376"
2099
+ },
2100
+ {
2101
+ country_label: "Afghanistan",
2102
+ code: "AF",
2103
+ unicode: "🇦🇫",
2104
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/AF.svg",
2105
+ label: "+93"
2106
+ },
2107
+ {
2108
+ country_label: "Antigua & Barbuda",
2109
+ code: "AG",
2110
+ unicode: "🇦🇬",
2111
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/AG.svg",
2112
+ label: "+1268"
2113
+ },
2114
+ {
2115
+ country_label: "Anguilla",
2116
+ code: "AI",
2117
+ unicode: "🇦🇮",
2118
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/AI.svg",
2119
+ label: "+1264"
2120
+ },
2121
+ {
2122
+ country_label: "Albania",
2123
+ code: "AL",
2124
+ unicode: "🇦🇱",
2125
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/AL.svg",
2126
+ label: "+355"
2127
+ },
2128
+ {
2129
+ country_label: "Armenia",
2130
+ code: "AM",
2131
+ unicode: "🇦🇲",
2132
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/AM.svg",
2133
+ label: "+374"
2134
+ },
2135
+ {
2136
+ country_label: "Angola",
2137
+ code: "AO",
2138
+ unicode: "🇦🇴",
2139
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/AO.svg",
2140
+ label: "+244"
2141
+ },
2142
+ {
2143
+ country_label: "Antarctica",
2144
+ code: "AQ",
2145
+ unicode: "🇦🇶",
2146
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/AQ.svg",
2147
+ label: "+672"
2148
+ },
2149
+ {
2150
+ country_label: "Argentina",
2151
+ code: "AR",
2152
+ unicode: "🇦🇷",
2153
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/AR.svg",
2154
+ label: "+54"
2155
+ },
2156
+ {
2157
+ country_label: "American Samoa",
2158
+ code: "AS",
2159
+ unicode: "🇦🇸",
2160
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/AS.svg",
2161
+ label: "+1684"
2162
+ },
2163
+ {
2164
+ country_label: "Austria",
2165
+ code: "AT",
2166
+ unicode: "🇦🇹",
2167
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/AT.svg",
2168
+ label: "+43"
2169
+ },
2170
+ {
2171
+ country_label: "Australia",
2172
+ code: "AU",
2173
+ unicode: "🇦🇺",
2174
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/AU.svg",
2175
+ label: "+61"
2176
+ },
2177
+ {
2178
+ country_label: "Aruba",
2179
+ code: "AW",
2180
+ unicode: "🇦🇼",
2181
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/AW.svg",
2182
+ label: "+297"
2183
+ },
2184
+ {
2185
+ country_label: "\xc5land Islands",
2186
+ code: "AX",
2187
+ unicode: "🇦🇽",
2188
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/AX.svg",
2189
+ label: "+358"
2190
+ },
2191
+ {
2192
+ country_label: "Azerbaijan",
2193
+ code: "AZ",
2194
+ unicode: "🇦🇿",
2195
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/AZ.svg",
2196
+ label: "+994"
2197
+ },
2198
+ {
2199
+ country_label: "Bosnia & Herzegovina",
2200
+ code: "BA",
2201
+ unicode: "🇧🇦",
2202
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BA.svg",
2203
+ label: "+387"
2204
+ },
2205
+ {
2206
+ country_label: "Barbados",
2207
+ code: "BB",
2208
+ unicode: "🇧🇧",
2209
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BB.svg",
2210
+ label: "+1246"
2211
+ },
2212
+ {
2213
+ country_label: "Bangladesh",
2214
+ code: "BD",
2215
+ unicode: "🇧🇩",
2216
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BD.svg",
2217
+ label: "+880"
2218
+ },
2219
+ {
2220
+ country_label: "Belgium",
2221
+ code: "BE",
2222
+ unicode: "🇧🇪",
2223
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BE.svg",
2224
+ label: "+32"
2225
+ },
2226
+ {
2227
+ country_label: "Burkina Faso",
2228
+ code: "BF",
2229
+ unicode: "🇧🇫",
2230
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BF.svg",
2231
+ label: "+226"
2232
+ },
2233
+ {
2234
+ country_label: "Bulgaria",
2235
+ code: "BG",
2236
+ unicode: "🇧🇬",
2237
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BG.svg",
2238
+ label: "+359"
2239
+ },
2240
+ {
2241
+ country_label: "Burundi",
2242
+ code: "BI",
2243
+ unicode: "🇧🇮",
2244
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BI.svg",
2245
+ label: "+257"
2246
+ },
2247
+ {
2248
+ country_label: "Benin",
2249
+ code: "BJ",
2250
+ unicode: "🇧🇯",
2251
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BJ.svg",
2252
+ label: "+229"
2253
+ },
2254
+ {
2255
+ country_label: "St. Barth\xe9lemy",
2256
+ code: "BL",
2257
+ unicode: "🇧🇱",
2258
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BL.svg",
2259
+ label: "+590"
2260
+ },
2261
+ {
2262
+ country_label: "Bermuda",
2263
+ code: "BM",
2264
+ unicode: "🇧🇲",
2265
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BM.svg",
2266
+ label: "+1441"
2267
+ },
2268
+ {
2269
+ country_label: "Brunei",
2270
+ code: "BN",
2271
+ unicode: "🇧🇳",
2272
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BN.svg",
2273
+ label: "+673"
2274
+ },
2275
+ {
2276
+ country_label: "Bolivia",
2277
+ code: "BO",
2278
+ unicode: "🇧🇴",
2279
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BO.svg",
2280
+ label: "+591"
2281
+ },
2282
+ {
2283
+ country_label: "Brazil",
2284
+ code: "BR",
2285
+ unicode: "🇧🇷",
2286
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BR.svg",
2287
+ label: "+55"
2288
+ },
2289
+ {
2290
+ country_label: "Bahamas",
2291
+ code: "BS",
2292
+ unicode: "🇧🇸",
2293
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BS.svg",
2294
+ label: "+1242"
2295
+ },
2296
+ {
2297
+ country_label: "Bhutan",
2298
+ code: "BT",
2299
+ unicode: "🇧🇹",
2300
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BT.svg",
2301
+ label: "+975"
2302
+ },
2303
+ {
2304
+ country_label: "Botswana",
2305
+ code: "BW",
2306
+ unicode: "🇧🇼",
2307
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BW.svg",
2308
+ label: "+267"
2309
+ },
2310
+ {
2311
+ country_label: "Belarus",
2312
+ code: "BY",
2313
+ unicode: "🇧🇾",
2314
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BY.svg",
2315
+ label: "+375"
2316
+ },
2317
+ {
2318
+ country_label: "Belize",
2319
+ code: "BZ",
2320
+ unicode: "🇧🇿",
2321
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BZ.svg",
2322
+ label: "+501"
2323
+ },
2324
+ {
2325
+ country_label: "Canada",
2326
+ code: "CA",
2327
+ unicode: "🇨🇦",
2328
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CA.svg",
2329
+ label: "+1"
2330
+ },
2331
+ {
2332
+ country_label: "Cocos (Keeling) Islands",
2333
+ code: "CC",
2334
+ unicode: "🇨🇨",
2335
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CC.svg",
2336
+ label: "+61"
2337
+ },
2338
+ {
2339
+ country_label: "Congo - Kinshasa",
2340
+ code: "CD",
2341
+ unicode: "🇨🇩",
2342
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CD.svg",
2343
+ label: "+243"
2344
+ },
2345
+ {
2346
+ country_label: "Central African Republic",
2347
+ code: "CF",
2348
+ unicode: "🇨🇫",
2349
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CF.svg",
2350
+ label: "+236"
2351
+ },
2352
+ {
2353
+ country_label: "Congo - Brazzaville",
2354
+ code: "CG",
2355
+ unicode: "🇨🇬",
2356
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CG.svg",
2357
+ label: "+242"
2358
+ },
2359
+ {
2360
+ country_label: "Switzerland",
2361
+ code: "CH",
2362
+ unicode: "🇨🇭",
2363
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CH.svg",
2364
+ label: "+41"
2365
+ },
2366
+ {
2367
+ country_label: "C\xf4te d’Ivoire",
2368
+ code: "CI",
2369
+ unicode: "🇨🇮",
2370
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CI.svg",
2371
+ label: "+225"
2372
+ },
2373
+ {
2374
+ country_label: "Cook Islands",
2375
+ code: "CK",
2376
+ unicode: "🇨🇰",
2377
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CK.svg",
2378
+ label: "+682"
2379
+ },
2380
+ {
2381
+ country_label: "Chile",
2382
+ code: "CL",
2383
+ unicode: "🇨🇱",
2384
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CL.svg",
2385
+ label: "+56"
2386
+ },
2387
+ {
2388
+ country_label: "Cameroon",
2389
+ code: "CM",
2390
+ unicode: "🇨🇲",
2391
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CM.svg",
2392
+ label: "+237"
2393
+ },
2394
+ {
2395
+ country_label: "China",
2396
+ code: "CN",
2397
+ unicode: "🇨🇳",
2398
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CN.svg",
2399
+ label: "+86"
2400
+ },
2401
+ {
2402
+ country_label: "Colombia",
2403
+ code: "CO",
2404
+ unicode: "🇨🇴",
2405
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CO.svg",
2406
+ label: "+57"
2407
+ },
2408
+ {
2409
+ country_label: "Costa Rica",
2410
+ code: "CR",
2411
+ unicode: "🇨🇷",
2412
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CR.svg",
2413
+ label: "+506"
2414
+ },
2415
+ {
2416
+ country_label: "Cuba",
2417
+ code: "CU",
2418
+ unicode: "🇨🇺",
2419
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CU.svg",
2420
+ label: "+53"
2421
+ },
2422
+ {
2423
+ country_label: "Cape Verde",
2424
+ code: "CV",
2425
+ unicode: "🇨🇻",
2426
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CV.svg",
2427
+ label: "+238"
2428
+ },
2429
+ {
2430
+ country_label: "Christmas Island",
2431
+ code: "CX",
2432
+ unicode: "🇨🇽",
2433
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CX.svg",
2434
+ label: "+61"
2435
+ },
2436
+ {
2437
+ country_label: "Cyprus",
2438
+ code: "CY",
2439
+ unicode: "🇨🇾",
2440
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CY.svg",
2441
+ label: "+357"
2442
+ },
2443
+ {
2444
+ country_label: "Czechia",
2445
+ code: "CZ",
2446
+ unicode: "🇨🇿",
2447
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CZ.svg",
2448
+ label: "+420"
2449
+ },
2450
+ {
2451
+ country_label: "Germany",
2452
+ code: "DE",
2453
+ unicode: "🇩🇪",
2454
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/DE.svg",
2455
+ label: "+49"
2456
+ },
2457
+ {
2458
+ country_label: "Djibouti",
2459
+ code: "DJ",
2460
+ unicode: "🇩🇯",
2461
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/DJ.svg",
2462
+ label: "+253"
2463
+ },
2464
+ {
2465
+ country_label: "Denmark",
2466
+ code: "DK",
2467
+ unicode: "🇩🇰",
2468
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/DK.svg",
2469
+ label: "+45"
2470
+ },
2471
+ {
2472
+ country_label: "Dominica",
2473
+ code: "DM",
2474
+ unicode: "🇩🇲",
2475
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/DM.svg",
2476
+ label: "+1767"
2477
+ },
2478
+ {
2479
+ country_label: "Dominican Republic",
2480
+ code: "DO",
2481
+ unicode: "🇩🇴",
2482
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/DO.svg",
2483
+ label: "+1849"
2484
+ },
2485
+ {
2486
+ country_label: "Algeria",
2487
+ code: "DZ",
2488
+ unicode: "🇩🇿",
2489
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/DZ.svg",
2490
+ label: "+213"
2491
+ },
2492
+ {
2493
+ country_label: "Ecuador",
2494
+ code: "EC",
2495
+ unicode: "🇪🇨",
2496
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/EC.svg",
2497
+ label: "+593"
2498
+ },
2499
+ {
2500
+ country_label: "Estonia",
2501
+ code: "EE",
2502
+ unicode: "🇪🇪",
2503
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/EE.svg",
2504
+ label: "+372"
2505
+ },
2506
+ {
2507
+ country_label: "Egypt",
2508
+ code: "EG",
2509
+ unicode: "🇪🇬",
2510
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/EG.svg",
2511
+ label: "+20"
2512
+ },
2513
+ {
2514
+ country_label: "Eritrea",
2515
+ code: "ER",
2516
+ unicode: "🇪🇷",
2517
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/ER.svg",
2518
+ label: "+291"
2519
+ },
2520
+ {
2521
+ country_label: "Spain",
2522
+ code: "ES",
2523
+ unicode: "🇪🇸",
2524
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/ES.svg",
2525
+ label: "+34"
2526
+ },
2527
+ {
2528
+ country_label: "Ethiopia",
2529
+ code: "ET",
2530
+ unicode: "🇪🇹",
2531
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/ET.svg",
2532
+ label: "+251"
2533
+ },
2534
+ {
2535
+ country_label: "Finland",
2536
+ code: "FI",
2537
+ unicode: "🇫🇮",
2538
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/FI.svg",
2539
+ label: "+358"
2540
+ },
2541
+ {
2542
+ country_label: "Fiji",
2543
+ code: "FJ",
2544
+ unicode: "🇫🇯",
2545
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/FJ.svg",
2546
+ label: "+679"
2547
+ },
2548
+ {
2549
+ country_label: "Falkland Islands",
2550
+ code: "FK",
2551
+ unicode: "🇫🇰",
2552
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/FK.svg",
2553
+ label: "+500"
2554
+ },
2555
+ {
2556
+ country_label: "Micronesia",
2557
+ code: "FM",
2558
+ unicode: "🇫🇲",
2559
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/FM.svg",
2560
+ label: "+691"
2561
+ },
2562
+ {
2563
+ country_label: "Faroe Islands",
2564
+ code: "FO",
2565
+ unicode: "🇫🇴",
2566
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/FO.svg",
2567
+ label: "+298"
2568
+ },
2569
+ {
2570
+ country_label: "France",
2571
+ code: "FR",
2572
+ unicode: "🇫🇷",
2573
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/FR.svg",
2574
+ label: "+33"
2575
+ },
2576
+ {
2577
+ country_label: "Gabon",
2578
+ code: "GA",
2579
+ unicode: "🇬🇦",
2580
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GA.svg",
2581
+ label: "+241"
2582
+ },
2583
+ {
2584
+ country_label: "United Kingdom",
2585
+ code: "GB",
2586
+ unicode: "🇬🇧",
2587
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GB.svg",
2588
+ label: "+44"
2589
+ },
2590
+ {
2591
+ country_label: "Grenada",
2592
+ code: "GD",
2593
+ unicode: "🇬🇩",
2594
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GD.svg",
2595
+ label: "+1473"
2596
+ },
2597
+ {
2598
+ country_label: "Georgia",
2599
+ code: "GE",
2600
+ unicode: "🇬🇪",
2601
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GE.svg",
2602
+ label: "+995"
2603
+ },
2604
+ {
2605
+ country_label: "French Guiana",
2606
+ code: "GF",
2607
+ unicode: "🇬🇫",
2608
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GF.svg",
2609
+ label: "+594"
2610
+ },
2611
+ {
2612
+ country_label: "Guernsey",
2613
+ code: "GG",
2614
+ unicode: "🇬🇬",
2615
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GG.svg",
2616
+ label: "+44"
2617
+ },
2618
+ {
2619
+ country_label: "Ghana",
2620
+ code: "GH",
2621
+ unicode: "🇬🇭",
2622
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GH.svg",
2623
+ label: "+233"
2624
+ },
2625
+ {
2626
+ country_label: "Gibraltar",
2627
+ code: "GI",
2628
+ unicode: "🇬🇮",
2629
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GI.svg",
2630
+ label: "+350"
2631
+ },
2632
+ {
2633
+ country_label: "Greenland",
2634
+ code: "GL",
2635
+ unicode: "🇬🇱",
2636
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GL.svg",
2637
+ label: "+299"
2638
+ },
2639
+ {
2640
+ country_label: "Gambia",
2641
+ code: "GM",
2642
+ unicode: "🇬🇲",
2643
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GM.svg",
2644
+ label: "+220"
2645
+ },
2646
+ {
2647
+ country_label: "Guinea",
2648
+ code: "GN",
2649
+ unicode: "🇬🇳",
2650
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GN.svg",
2651
+ label: "+224"
2652
+ },
2653
+ {
2654
+ country_label: "Guadeloupe",
2655
+ code: "GP",
2656
+ unicode: "🇬🇵",
2657
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GP.svg",
2658
+ label: "+590"
2659
+ },
2660
+ {
2661
+ country_label: "Equatorial Guinea",
2662
+ code: "GQ",
2663
+ unicode: "🇬🇶",
2664
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GQ.svg",
2665
+ label: "+240"
2666
+ },
2667
+ {
2668
+ country_label: "Greece",
2669
+ code: "GR",
2670
+ unicode: "🇬🇷",
2671
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GR.svg",
2672
+ label: "+30"
2673
+ },
2674
+ {
2675
+ country_label: "South Georgia & South Sandwich Islands",
2676
+ code: "GS",
2677
+ unicode: "🇬🇸",
2678
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GS.svg",
2679
+ label: "+500"
2680
+ },
2681
+ {
2682
+ country_label: "Guatemala",
2683
+ code: "GT",
2684
+ unicode: "🇬🇹",
2685
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GT.svg",
2686
+ label: "+502"
2687
+ },
2688
+ {
2689
+ country_label: "Guam",
2690
+ code: "GU",
2691
+ unicode: "🇬🇺",
2692
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GU.svg",
2693
+ label: "+1671"
2694
+ },
2695
+ {
2696
+ country_label: "Guinea-Bissau",
2697
+ code: "GW",
2698
+ unicode: "🇬🇼",
2699
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GW.svg",
2700
+ label: "+245"
2701
+ },
2702
+ {
2703
+ country_label: "Guyana",
2704
+ code: "GY",
2705
+ unicode: "🇬🇾",
2706
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GY.svg",
2707
+ label: "+595"
2708
+ },
2709
+ {
2710
+ country_label: "Hong Kong SAR China",
2711
+ code: "HK",
2712
+ unicode: "🇭🇰",
2713
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/HK.svg",
2714
+ label: "+852"
2715
+ },
2716
+ {
2717
+ country_label: "Honduras",
2718
+ code: "HN",
2719
+ unicode: "🇭🇳",
2720
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/HN.svg",
2721
+ label: "+504"
2722
+ },
2723
+ {
2724
+ country_label: "Croatia",
2725
+ code: "HR",
2726
+ unicode: "🇭🇷",
2727
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/HR.svg",
2728
+ label: "+385"
2729
+ },
2730
+ {
2731
+ country_label: "Haiti",
2732
+ code: "HT",
2733
+ unicode: "🇭🇹",
2734
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/HT.svg",
2735
+ label: "+509"
2736
+ },
2737
+ {
2738
+ country_label: "Hungary",
2739
+ code: "HU",
2740
+ unicode: "🇭🇺",
2741
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/HU.svg",
2742
+ label: "+36"
2743
+ },
2744
+ {
2745
+ country_label: "Indonesia",
2746
+ code: "ID",
2747
+ unicode: "🇮🇩",
2748
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/ID.svg",
2749
+ label: "+62"
2750
+ },
2751
+ {
2752
+ country_label: "Ireland",
2753
+ code: "IE",
2754
+ unicode: "🇮🇪",
2755
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/IE.svg",
2756
+ label: "+353"
2757
+ },
2758
+ {
2759
+ country_label: "Israel",
2760
+ code: "IL",
2761
+ unicode: "🇮🇱",
2762
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/IL.svg",
2763
+ label: "+972"
2764
+ },
2765
+ {
2766
+ country_label: "Isle of Man",
2767
+ code: "IM",
2768
+ unicode: "🇮🇲",
2769
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/IM.svg",
2770
+ label: "+44"
2771
+ },
2772
+ {
2773
+ country_label: "India",
2774
+ code: "IN",
2775
+ unicode: "🇮🇳",
2776
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/IN.svg",
2777
+ label: "+91"
2778
+ },
2779
+ {
2780
+ country_label: "British Indian Ocean Territory",
2781
+ code: "IO",
2782
+ unicode: "🇮🇴",
2783
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/IO.svg",
2784
+ label: "+246"
2785
+ },
2786
+ {
2787
+ country_label: "Iraq",
2788
+ code: "IQ",
2789
+ unicode: "🇮🇶",
2790
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/IQ.svg",
2791
+ label: "+964"
2792
+ },
2793
+ {
2794
+ country_label: "Iran",
2795
+ code: "IR",
2796
+ unicode: "🇮🇷",
2797
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/IR.svg",
2798
+ label: "+98"
2799
+ },
2800
+ {
2801
+ country_label: "Iceland",
2802
+ code: "IS",
2803
+ unicode: "🇮🇸",
2804
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/IS.svg",
2805
+ label: "+354"
2806
+ },
2807
+ {
2808
+ country_label: "Italy",
2809
+ code: "IT",
2810
+ unicode: "🇮🇹",
2811
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/IT.svg",
2812
+ label: "+39"
2813
+ },
2814
+ {
2815
+ country_label: "Jersey",
2816
+ code: "JE",
2817
+ unicode: "🇯🇪",
2818
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/JE.svg",
2819
+ label: "+44"
2820
+ },
2821
+ {
2822
+ country_label: "Jamaica",
2823
+ code: "JM",
2824
+ unicode: "🇯🇲",
2825
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/JM.svg",
2826
+ label: "+1876"
2827
+ },
2828
+ {
2829
+ country_label: "Jordan",
2830
+ code: "JO",
2831
+ unicode: "🇯🇴",
2832
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/JO.svg",
2833
+ label: "+962"
2834
+ },
2835
+ {
2836
+ country_label: "Japan",
2837
+ code: "JP",
2838
+ unicode: "🇯🇵",
2839
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/JP.svg",
2840
+ label: "+81"
2841
+ },
2842
+ {
2843
+ country_label: "Kenya",
2844
+ code: "KE",
2845
+ unicode: "🇰🇪",
2846
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/KE.svg",
2847
+ label: "+254"
2848
+ },
2849
+ {
2850
+ country_label: "Kyrgyzstan",
2851
+ code: "KG",
2852
+ unicode: "🇰🇬",
2853
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/KG.svg",
2854
+ label: "+996"
2855
+ },
2856
+ {
2857
+ country_label: "Cambodia",
2858
+ code: "KH",
2859
+ unicode: "🇰🇭",
2860
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/KH.svg",
2861
+ label: "+855"
2862
+ },
2863
+ {
2864
+ country_label: "Kiribati",
2865
+ code: "KI",
2866
+ unicode: "🇰🇮",
2867
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/KI.svg",
2868
+ label: "+686"
2869
+ },
2870
+ {
2871
+ country_label: "Comoros",
2872
+ code: "KM",
2873
+ unicode: "🇰🇲",
2874
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/KM.svg",
2875
+ label: "+269"
2876
+ },
2877
+ {
2878
+ country_label: "St. Kitts & Nevis",
2879
+ code: "KN",
2880
+ unicode: "🇰🇳",
2881
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/KN.svg",
2882
+ label: "+1869"
2883
+ },
2884
+ {
2885
+ country_label: "North Korea",
2886
+ code: "KP",
2887
+ unicode: "🇰🇵",
2888
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/KP.svg",
2889
+ label: "+850"
2890
+ },
2891
+ {
2892
+ country_label: "South Korea",
2893
+ code: "KR",
2894
+ unicode: "🇰🇷",
2895
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/KR.svg",
2896
+ label: "+82"
2897
+ },
2898
+ {
2899
+ country_label: "Cayman Islands",
2900
+ code: "KY",
2901
+ unicode: "🇰🇾",
2902
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/KY.svg",
2903
+ label: "+ 345"
2904
+ },
2905
+ {
2906
+ country_label: "Kazakhstan",
2907
+ code: "KZ",
2908
+ unicode: "🇰🇿",
2909
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/KZ.svg",
2910
+ label: "+77"
2911
+ },
2912
+ {
2913
+ country_label: "Laos",
2914
+ code: "LA",
2915
+ unicode: "🇱🇦",
2916
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/LA.svg",
2917
+ label: "+856"
2918
+ },
2919
+ {
2920
+ country_label: "Lebanon",
2921
+ code: "LB",
2922
+ unicode: "🇱🇧",
2923
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/LB.svg",
2924
+ label: "+961"
2925
+ },
2926
+ {
2927
+ country_label: "St. Lucia",
2928
+ code: "LC",
2929
+ unicode: "🇱🇨",
2930
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/LC.svg",
2931
+ label: "+1758"
2932
+ },
2933
+ {
2934
+ country_label: "Liechtenstein",
2935
+ code: "LI",
2936
+ unicode: "🇱🇮",
2937
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/LI.svg",
2938
+ label: "+423"
2939
+ },
2940
+ {
2941
+ country_label: "Sri Lanka",
2942
+ code: "LK",
2943
+ unicode: "🇱🇰",
2944
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/LK.svg",
2945
+ label: "+94"
2946
+ },
2947
+ {
2948
+ country_label: "Liberia",
2949
+ code: "LR",
2950
+ unicode: "🇱🇷",
2951
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/LR.svg",
2952
+ label: "+231"
2953
+ },
2954
+ {
2955
+ country_label: "Lesotho",
2956
+ code: "LS",
2957
+ unicode: "🇱🇸",
2958
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/LS.svg",
2959
+ label: "+266"
2960
+ },
2961
+ {
2962
+ country_label: "Lithuania",
2963
+ code: "LT",
2964
+ unicode: "🇱🇹",
2965
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/LT.svg",
2966
+ label: "+370"
2967
+ },
2968
+ {
2969
+ country_label: "Luxembourg",
2970
+ code: "LU",
2971
+ unicode: "🇱🇺",
2972
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/LU.svg",
2973
+ label: "+352"
2974
+ },
2975
+ {
2976
+ country_label: "Latvia",
2977
+ code: "LV",
2978
+ unicode: "🇱🇻",
2979
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/LV.svg",
2980
+ label: "+371"
2981
+ },
2982
+ {
2983
+ country_label: "Libya",
2984
+ code: "LY",
2985
+ unicode: "🇱🇾",
2986
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/LY.svg",
2987
+ label: "+218"
2988
+ },
2989
+ {
2990
+ country_label: "Morocco",
2991
+ code: "MA",
2992
+ unicode: "🇲🇦",
2993
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MA.svg",
2994
+ label: "+212"
2995
+ },
2996
+ {
2997
+ country_label: "Monaco",
2998
+ code: "MC",
2999
+ unicode: "🇲🇨",
3000
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MC.svg",
3001
+ label: "+377"
3002
+ },
3003
+ {
3004
+ country_label: "Moldova",
3005
+ code: "MD",
3006
+ unicode: "🇲🇩",
3007
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MD.svg",
3008
+ label: "+373"
3009
+ },
3010
+ {
3011
+ country_label: "Montenegro",
3012
+ code: "ME",
3013
+ unicode: "🇲🇪",
3014
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/ME.svg",
3015
+ label: "+382"
3016
+ },
3017
+ {
3018
+ country_label: "St. Martin",
3019
+ code: "MF",
3020
+ unicode: "🇲🇫",
3021
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MF.svg",
3022
+ label: "+590"
3023
+ },
3024
+ {
3025
+ country_label: "Madagascar",
3026
+ code: "MG",
3027
+ unicode: "🇲🇬",
3028
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MG.svg",
3029
+ label: "+261"
3030
+ },
3031
+ {
3032
+ country_label: "Marshall Islands",
3033
+ code: "MH",
3034
+ unicode: "🇲🇭",
3035
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MH.svg",
3036
+ label: "+692"
3037
+ },
3038
+ {
3039
+ country_label: "North Macedonia",
3040
+ code: "MK",
3041
+ unicode: "🇲🇰",
3042
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MK.svg",
3043
+ label: "+389"
3044
+ },
3045
+ {
3046
+ country_label: "Mali",
3047
+ code: "ML",
3048
+ unicode: "🇲🇱",
3049
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/ML.svg",
3050
+ label: "+223"
3051
+ },
3052
+ {
3053
+ country_label: "Myanmar (Burma)",
3054
+ code: "MM",
3055
+ unicode: "🇲🇲",
3056
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MM.svg",
3057
+ label: "+95"
3058
+ },
3059
+ {
3060
+ country_label: "Mongolia",
3061
+ code: "MN",
3062
+ unicode: "🇲🇳",
3063
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MN.svg",
3064
+ label: "+976"
3065
+ },
3066
+ {
3067
+ country_label: "Macao SAR China",
3068
+ code: "MO",
3069
+ unicode: "🇲🇴",
3070
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MO.svg",
3071
+ label: "+853"
3072
+ },
3073
+ {
3074
+ country_label: "Northern Mariana Islands",
3075
+ code: "MP",
3076
+ unicode: "🇲🇵",
3077
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MP.svg",
3078
+ label: "+1670"
3079
+ },
3080
+ {
3081
+ country_label: "Martinique",
3082
+ code: "MQ",
3083
+ unicode: "🇲🇶",
3084
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MQ.svg",
3085
+ label: "+596"
3086
+ },
3087
+ {
3088
+ country_label: "Mauritania",
3089
+ code: "MR",
3090
+ unicode: "🇲🇷",
3091
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MR.svg",
3092
+ label: "+222"
3093
+ },
3094
+ {
3095
+ country_label: "Montserrat",
3096
+ code: "MS",
3097
+ unicode: "🇲🇸",
3098
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MS.svg",
3099
+ label: "+1664"
3100
+ },
3101
+ {
3102
+ country_label: "Malta",
3103
+ code: "MT",
3104
+ unicode: "🇲🇹",
3105
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MT.svg",
3106
+ label: "+356"
3107
+ },
3108
+ {
3109
+ country_label: "Mauritius",
3110
+ code: "MU",
3111
+ unicode: "🇲🇺",
3112
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MU.svg",
3113
+ label: "+230"
3114
+ },
3115
+ {
3116
+ country_label: "Maldives",
3117
+ code: "MV",
3118
+ unicode: "🇲🇻",
3119
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MV.svg",
3120
+ label: "+960"
3121
+ },
3122
+ {
3123
+ country_label: "Malawi",
3124
+ code: "MW",
3125
+ unicode: "🇲🇼",
3126
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MW.svg",
3127
+ label: "+265"
3128
+ },
3129
+ {
3130
+ country_label: "Mexico",
3131
+ code: "MX",
3132
+ unicode: "🇲🇽",
3133
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MX.svg",
3134
+ label: "+52"
3135
+ },
3136
+ {
3137
+ country_label: "Malaysia",
3138
+ code: "MY",
3139
+ unicode: "🇲🇾",
3140
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MY.svg",
3141
+ label: "+60"
3142
+ },
3143
+ {
3144
+ country_label: "Mozambique",
3145
+ code: "MZ",
3146
+ unicode: "🇲🇿",
3147
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MZ.svg",
3148
+ label: "+258"
3149
+ },
3150
+ {
3151
+ country_label: "Namibia",
3152
+ code: "NA",
3153
+ unicode: "🇳🇦",
3154
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/NA.svg",
3155
+ label: "+264"
3156
+ },
3157
+ {
3158
+ country_label: "New Caledonia",
3159
+ code: "NC",
3160
+ unicode: "🇳🇨",
3161
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/NC.svg",
3162
+ label: "+687"
3163
+ },
3164
+ {
3165
+ country_label: "Niger",
3166
+ code: "NE",
3167
+ unicode: "🇳🇪",
3168
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/NE.svg",
3169
+ label: "+227"
3170
+ },
3171
+ {
3172
+ country_label: "Norfolk Island",
3173
+ code: "NF",
3174
+ unicode: "🇳🇫",
3175
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/NF.svg",
3176
+ label: "+672"
3177
+ },
3178
+ {
3179
+ country_label: "Nigeria",
3180
+ code: "NG",
3181
+ unicode: "🇳🇬",
3182
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/NG.svg",
3183
+ label: "+234"
3184
+ },
3185
+ {
3186
+ country_label: "Nicaragua",
3187
+ code: "NI",
3188
+ unicode: "🇳🇮",
3189
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/NI.svg",
3190
+ label: "+505"
3191
+ },
3192
+ {
3193
+ country_label: "Netherlands",
3194
+ code: "NL",
3195
+ unicode: "🇳🇱",
3196
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/NL.svg",
3197
+ label: "+31"
3198
+ },
3199
+ {
3200
+ country_label: "Norway",
3201
+ code: "NO",
3202
+ unicode: "🇳🇴",
3203
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/NO.svg",
3204
+ label: "+47"
3205
+ },
3206
+ {
3207
+ country_label: "Nepal",
3208
+ code: "NP",
3209
+ unicode: "🇳🇵",
3210
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/NP.svg",
3211
+ label: "+977"
3212
+ },
3213
+ {
3214
+ country_label: "Nauru",
3215
+ code: "NR",
3216
+ unicode: "🇳🇷",
3217
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/NR.svg",
3218
+ label: "+674"
3219
+ },
3220
+ {
3221
+ country_label: "Niue",
3222
+ code: "NU",
3223
+ unicode: "🇳🇺",
3224
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/NU.svg",
3225
+ label: "+683"
3226
+ },
3227
+ {
3228
+ country_label: "New Zealand",
3229
+ code: "NZ",
3230
+ unicode: "🇳🇿",
3231
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/NZ.svg",
3232
+ label: "+64"
3233
+ },
3234
+ {
3235
+ country_label: "Panama",
3236
+ code: "PA",
3237
+ unicode: "🇵🇦",
3238
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/PA.svg",
3239
+ label: "+507"
3240
+ },
3241
+ {
3242
+ country_label: "Peru",
3243
+ code: "PE",
3244
+ unicode: "🇵🇪",
3245
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/PE.svg",
3246
+ label: "+51"
3247
+ },
3248
+ {
3249
+ country_label: "French Polynesia",
3250
+ code: "PF",
3251
+ unicode: "🇵🇫",
3252
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/PF.svg",
3253
+ label: "+689"
3254
+ },
3255
+ {
3256
+ country_label: "Papua New Guinea",
3257
+ code: "PG",
3258
+ unicode: "🇵🇬",
3259
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/PG.svg",
3260
+ label: "+675"
3261
+ },
3262
+ {
3263
+ country_label: "Philippines",
3264
+ code: "PH",
3265
+ unicode: "🇵🇭",
3266
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/PH.svg",
3267
+ label: "+63"
3268
+ },
3269
+ {
3270
+ country_label: "Pakistan",
3271
+ code: "PK",
3272
+ unicode: "🇵🇰",
3273
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/PK.svg",
3274
+ label: "+92"
3275
+ },
3276
+ {
3277
+ country_label: "Poland",
3278
+ code: "PL",
3279
+ unicode: "🇵🇱",
3280
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/PL.svg",
3281
+ label: "+48"
3282
+ },
3283
+ {
3284
+ country_label: "St. Pierre & Miquelon",
3285
+ code: "PM",
3286
+ unicode: "🇵🇲",
3287
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/PM.svg",
3288
+ label: "+508"
3289
+ },
3290
+ {
3291
+ country_label: "Pitcairn Islands",
3292
+ code: "PN",
3293
+ unicode: "🇵🇳",
3294
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/PN.svg",
3295
+ label: "+872"
3296
+ },
3297
+ {
3298
+ country_label: "Puerto Rico",
3299
+ code: "PR",
3300
+ unicode: "🇵🇷",
3301
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/PR.svg",
3302
+ label: "+1939"
3303
+ },
3304
+ {
3305
+ country_label: "Palestinian Territories",
3306
+ code: "PS",
3307
+ unicode: "🇵🇸",
3308
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/PS.svg",
3309
+ label: "+970"
3310
+ },
3311
+ {
3312
+ country_label: "Portugal",
3313
+ code: "PT",
3314
+ unicode: "🇵🇹",
3315
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/PT.svg",
3316
+ label: "+351"
3317
+ },
3318
+ {
3319
+ country_label: "Palau",
3320
+ code: "PW",
3321
+ unicode: "🇵🇼",
3322
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/PW.svg",
3323
+ label: "+680"
3324
+ },
3325
+ {
3326
+ country_label: "Paraguay",
3327
+ code: "PY",
3328
+ unicode: "🇵🇾",
3329
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/PY.svg",
3330
+ label: "+595"
3331
+ },
3332
+ {
3333
+ country_label: "R\xe9union",
3334
+ code: "RE",
3335
+ unicode: "🇷🇪",
3336
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/RE.svg",
3337
+ label: "+262"
3338
+ },
3339
+ {
3340
+ country_label: "Romania",
3341
+ code: "RO",
3342
+ unicode: "🇷🇴",
3343
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/RO.svg",
3344
+ label: "+40"
3345
+ },
3346
+ {
3347
+ country_label: "Serbia",
3348
+ code: "RS",
3349
+ unicode: "🇷🇸",
3350
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/RS.svg",
3351
+ label: "+381"
3352
+ },
3353
+ {
3354
+ country_label: "Russia",
3355
+ code: "RU",
3356
+ unicode: "🇷🇺",
3357
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/RU.svg",
3358
+ label: "+7"
3359
+ },
3360
+ {
3361
+ country_label: "Rwanda",
3362
+ code: "RW",
3363
+ unicode: "🇷🇼",
3364
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/RW.svg",
3365
+ label: "+250"
3366
+ },
3367
+ {
3368
+ country_label: "Solomon Islands",
3369
+ code: "SB",
3370
+ unicode: "🇸🇧",
3371
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SB.svg",
3372
+ label: "+677"
3373
+ },
3374
+ {
3375
+ country_label: "Seychelles",
3376
+ code: "SC",
3377
+ unicode: "🇸🇨",
3378
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SC.svg",
3379
+ label: "+248"
3380
+ },
3381
+ {
3382
+ country_label: "Sudan",
3383
+ code: "SD",
3384
+ unicode: "🇸🇩",
3385
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SD.svg",
3386
+ label: "+249"
3387
+ },
3388
+ {
3389
+ country_label: "Sweden",
3390
+ code: "SE",
3391
+ unicode: "🇸🇪",
3392
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SE.svg",
3393
+ label: "+46"
3394
+ },
3395
+ {
3396
+ country_label: "Singapore",
3397
+ code: "SG",
3398
+ unicode: "🇸🇬",
3399
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SG.svg",
3400
+ label: "+65"
3401
+ },
3402
+ {
3403
+ country_label: "St. Helena",
3404
+ code: "SH",
3405
+ unicode: "🇸🇭",
3406
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SH.svg",
3407
+ label: "+290"
3408
+ },
3409
+ {
3410
+ country_label: "Slovenia",
3411
+ code: "SI",
3412
+ unicode: "🇸🇮",
3413
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SI.svg",
3414
+ label: "+386"
3415
+ },
3416
+ {
3417
+ country_label: "Svalbard & Jan Mayen",
3418
+ code: "SJ",
3419
+ unicode: "🇸🇯",
3420
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SJ.svg",
3421
+ label: "+47"
3422
+ },
3423
+ {
3424
+ country_label: "Slovakia",
3425
+ code: "SK",
3426
+ unicode: "🇸🇰",
3427
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SK.svg",
3428
+ label: "+421"
3429
+ },
3430
+ {
3431
+ country_label: "Sierra Leone",
3432
+ code: "SL",
3433
+ unicode: "🇸🇱",
3434
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SL.svg",
3435
+ label: "+232"
3436
+ },
3437
+ {
3438
+ country_label: "San Marino",
3439
+ code: "SM",
3440
+ unicode: "🇸🇲",
3441
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SM.svg",
3442
+ label: "+378"
3443
+ },
3444
+ {
3445
+ country_label: "Senegal",
3446
+ code: "SN",
3447
+ unicode: "🇸🇳",
3448
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SN.svg",
3449
+ label: "+221"
3450
+ },
3451
+ {
3452
+ country_label: "Somalia",
3453
+ code: "SO",
3454
+ unicode: "🇸🇴",
3455
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SO.svg",
3456
+ label: "+252"
3457
+ },
3458
+ {
3459
+ country_label: "Suriname",
3460
+ code: "SR",
3461
+ unicode: "🇸🇷",
3462
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SR.svg",
3463
+ label: "+597"
3464
+ },
3465
+ {
3466
+ country_label: "South Sudan",
3467
+ code: "SS",
3468
+ unicode: "🇸🇸",
3469
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SS.svg",
3470
+ label: "+211"
3471
+ },
3472
+ {
3473
+ country_label: "S\xe3o Tom\xe9 & Pr\xedncipe",
3474
+ code: "ST",
3475
+ unicode: "🇸🇹",
3476
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/ST.svg",
3477
+ label: "+239"
3478
+ },
3479
+ {
3480
+ country_label: "El Salvador",
3481
+ code: "SV",
3482
+ unicode: "🇸🇻",
3483
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SV.svg",
3484
+ label: "+503"
3485
+ },
3486
+ {
3487
+ country_label: "Syria",
3488
+ code: "SY",
3489
+ unicode: "🇸🇾",
3490
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SY.svg",
3491
+ label: "+963"
3492
+ },
3493
+ {
3494
+ country_label: "Eswatini",
3495
+ code: "SZ",
3496
+ unicode: "🇸🇿",
3497
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SZ.svg",
3498
+ label: "+268"
3499
+ },
3500
+ {
3501
+ country_label: "Turks & Caicos Islands",
3502
+ code: "TC",
3503
+ unicode: "🇹🇨",
3504
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/TC.svg",
3505
+ label: "+1649"
3506
+ },
3507
+ {
3508
+ country_label: "Chad",
3509
+ code: "TD",
3510
+ unicode: "🇹🇩",
3511
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/TD.svg",
3512
+ label: "+235"
3513
+ },
3514
+ {
3515
+ country_label: "Togo",
3516
+ code: "TG",
3517
+ unicode: "🇹🇬",
3518
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/TG.svg",
3519
+ label: "+228"
3520
+ },
3521
+ {
3522
+ country_label: "Thailand",
3523
+ code: "TH",
3524
+ unicode: "🇹🇭",
3525
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/TH.svg",
3526
+ label: "+66"
3527
+ },
3528
+ {
3529
+ country_label: "Tajikistan",
3530
+ code: "TJ",
3531
+ unicode: "🇹🇯",
3532
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/TJ.svg",
3533
+ label: "+992"
3534
+ },
3535
+ {
3536
+ country_label: "Tokelau",
3537
+ code: "TK",
3538
+ unicode: "🇹🇰",
3539
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/TK.svg",
3540
+ label: "+690"
3541
+ },
3542
+ {
3543
+ country_label: "Timor-Leste",
3544
+ code: "TL",
3545
+ unicode: "🇹🇱",
3546
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/TL.svg",
3547
+ label: "+670"
3548
+ },
3549
+ {
3550
+ country_label: "Turkmenistan",
3551
+ code: "TM",
3552
+ unicode: "🇹🇲",
3553
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/TM.svg",
3554
+ label: "+993"
3555
+ },
3556
+ {
3557
+ country_label: "Tunisia",
3558
+ code: "TN",
3559
+ unicode: "🇹🇳",
3560
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/TN.svg",
3561
+ label: "+216"
3562
+ },
3563
+ {
3564
+ country_label: "Tonga",
3565
+ code: "TO",
3566
+ unicode: "🇹🇴",
3567
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/TO.svg",
3568
+ label: "+676"
3569
+ },
3570
+ {
3571
+ country_label: "Turkey",
3572
+ code: "TR",
3573
+ unicode: "🇹🇷",
3574
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/TR.svg",
3575
+ label: "+90"
3576
+ },
3577
+ {
3578
+ country_label: "Trinidad & Tobago",
3579
+ code: "TT",
3580
+ unicode: "🇹🇹",
3581
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/TT.svg",
3582
+ label: "+1868"
3583
+ },
3584
+ {
3585
+ country_label: "Tuvalu",
3586
+ code: "TV",
3587
+ unicode: "🇹🇻",
3588
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/TV.svg",
3589
+ label: "+688"
3590
+ },
3591
+ {
3592
+ country_label: "Taiwan",
3593
+ code: "TW",
3594
+ unicode: "🇹🇼",
3595
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/TW.svg",
3596
+ label: "+886"
3597
+ },
3598
+ {
3599
+ country_label: "Tanzania",
3600
+ code: "TZ",
3601
+ unicode: "🇹🇿",
3602
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/TZ.svg",
3603
+ label: "+255"
3604
+ },
3605
+ {
3606
+ country_label: "Ukraine",
3607
+ code: "UA",
3608
+ unicode: "🇺🇦",
3609
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/UA.svg",
3610
+ label: "+380"
3611
+ },
3612
+ {
3613
+ country_label: "Uganda",
3614
+ code: "UG",
3615
+ unicode: "🇺🇬",
3616
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/UG.svg",
3617
+ label: "+256"
3618
+ },
3619
+ {
3620
+ country_label: "United States",
3621
+ code: "US",
3622
+ unicode: "🇺🇸",
3623
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/US.svg",
3624
+ label: "+1"
3625
+ },
3626
+ {
3627
+ country_label: "Uruguay",
3628
+ code: "UY",
3629
+ unicode: "🇺🇾",
3630
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/UY.svg",
3631
+ label: "+598"
3632
+ },
3633
+ {
3634
+ country_label: "Uzbekistan",
3635
+ code: "UZ",
3636
+ unicode: "🇺🇿",
3637
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/UZ.svg",
3638
+ label: "+998"
3639
+ },
3640
+ {
3641
+ country_label: "Vatican City",
3642
+ code: "VA",
3643
+ unicode: "🇻🇦",
3644
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/VA.svg",
3645
+ label: "+379"
3646
+ },
3647
+ {
3648
+ country_label: "St. Vincent & Grenadines",
3649
+ code: "VC",
3650
+ unicode: "🇻🇨",
3651
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/VC.svg",
3652
+ label: "+1784"
3653
+ },
3654
+ {
3655
+ country_label: "Venezuela",
3656
+ code: "VE",
3657
+ unicode: "🇻🇪",
3658
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/VE.svg",
3659
+ label: "+58"
3660
+ },
3661
+ {
3662
+ country_label: "British Virgin Islands",
3663
+ code: "VG",
3664
+ unicode: "🇻🇬",
3665
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/VG.svg",
3666
+ label: "+1284"
3667
+ },
3668
+ {
3669
+ country_label: "U.S. Virgin Islands",
3670
+ code: "VI",
3671
+ unicode: "🇻🇮",
3672
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/VI.svg",
3673
+ label: "+1340"
3674
+ },
3675
+ {
3676
+ country_label: "Vietnam",
3677
+ code: "VN",
3678
+ unicode: "🇻🇳",
3679
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/VN.svg",
3680
+ label: "+84"
3681
+ },
3682
+ {
3683
+ country_label: "Vanuatu",
3684
+ code: "VU",
3685
+ unicode: "🇻🇺",
3686
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/VU.svg",
3687
+ label: "+678"
3688
+ },
3689
+ {
3690
+ country_label: "Wallis & Futuna",
3691
+ code: "WF",
3692
+ unicode: "🇼🇫",
3693
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/WF.svg",
3694
+ label: "+681"
3695
+ },
3696
+ {
3697
+ country_label: "Samoa",
3698
+ code: "WS",
3699
+ unicode: "🇼🇸",
3700
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/WS.svg",
3701
+ label: "+685"
3702
+ },
3703
+ {
3704
+ country_label: "Yemen",
3705
+ code: "YE",
3706
+ unicode: "🇾🇪",
3707
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/YE.svg",
3708
+ label: "+967"
3709
+ },
3710
+ {
3711
+ country_label: "Mayotte",
3712
+ code: "YT",
3713
+ unicode: "🇾🇹",
3714
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/YT.svg",
3715
+ label: "+262"
3716
+ },
3717
+ {
3718
+ country_label: "South Africa",
3719
+ code: "ZA",
3720
+ unicode: "🇿🇦",
3721
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/ZA.svg",
3722
+ label: "+27"
3723
+ },
3724
+ {
3725
+ country_label: "Zambia",
3726
+ code: "ZM",
3727
+ unicode: "🇿🇲",
3728
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/ZM.svg",
3729
+ label: "+260"
3730
+ },
3731
+ {
3732
+ country_label: "Zimbabwe",
3733
+ code: "ZW",
3734
+ unicode: "🇿🇼",
3735
+ image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/ZW.svg",
3736
+ label: "+263"
3737
+ }
3738
+ ];
3739
+ var countries_default = countries;
3740
+ // components/elements/PhoneInput.tsx
3741
+ var import_react_select = __toESM(require("react-select"));
3742
+ var Menu = function(_param) {
3743
+ var cx = _param.cx, children = _param.children, getStyles = _param.getStyles, innerProps = _param.innerProps, innerRef = _param.innerRef, props = _object_without_properties(_param, [
3744
+ "cx",
3745
+ "children",
3746
+ "getStyles",
3747
+ "innerProps",
3748
+ "innerRef"
3749
+ ]);
3750
+ return /* @__PURE__ */ import_react15.default.createElement("div", _object_spread({
3751
+ className: "hawa-absolute hawa-z-50 hawa-w-[190px] hawa-rounded hawa-border hawa-bg-background",
3752
+ ref: innerRef
3753
+ }, innerProps), children);
3754
+ };
3755
+ var Option = function(_param) /* @__PURE__ */ {
3756
+ var cx = _param.cx, children = _param.children, getStyles = _param.getStyles, innerProps = _param.innerProps, innerRef = _param.innerRef, props = _object_without_properties(_param, [
3757
+ "cx",
3758
+ "children",
3759
+ "getStyles",
3760
+ "innerProps",
3761
+ "innerRef"
3762
+ ]);
3763
+ return import_react15.default.createElement("div", _object_spread({
3764
+ ref: innerRef,
3765
+ className: "hawa-m-2 hawa-flex hawa-cursor-pointer hawa-flex-row hawa-items-center hawa-justify-between hawa-rounded-inner hawa-p-1 hawa-px-2 hover:hawa-bg-primary hover:hawa-text-primary-foreground"
3766
+ }, innerProps), /* @__PURE__ */ import_react15.default.createElement("div", {
3767
+ className: "hawa-flex hawa-flex-row hawa-items-center hawa-justify-center hawa-gap-1"
3768
+ }, /* @__PURE__ */ import_react15.default.createElement("img", {
3769
+ className: "hawa-h-8 hawa-w-8",
3770
+ src: props.data.image
3771
+ }), /* @__PURE__ */ import_react15.default.createElement("span", {
3772
+ className: "hawa-text-[10px]"
3773
+ }, props.data.country_label)), children);
3774
+ };
3775
+ var PhoneInput = function(props) {
3776
+ var _ref = _sliced_to_array((0, import_react15.useState)("+966"), 2), selectedCountry = _ref[0], setSelectedCountry = _ref[1];
3777
+ return /* @__PURE__ */ import_react15.default.createElement("div", {
3778
+ className: "hawa-mb-3 hawa-flex hawa-flex-col"
3779
+ }, props.label && /* @__PURE__ */ import_react15.default.createElement("label", {
3780
+ className: "hawa-mb-2 hawa-block hawa-text-sm hawa-font-medium"
3781
+ }, props.label), /* @__PURE__ */ import_react15.default.createElement("div", {
3782
+ dir: "ltr",
3783
+ className: "hawa-flex hawa-flex-row "
3784
+ }, /* @__PURE__ */ import_react15.default.createElement(import_react_select.default, {
3785
+ classNames: {
3786
+ control: function() {
3787
+ return "hawa-w-[64px] hawa-text-right hawa-pr-2 hawa-cursor-pointer hawa-z-10 hawa-border hawa-rounded-l hawa-bg-background";
3788
+ },
3789
+ placeholder: function(state) {
3790
+ return "hawa-text-muted-foreground hawa-text-right ";
3791
+ },
3792
+ input: function(state) {
3793
+ return "hawa-bg-transparent hawa-cursor-pointer dark:hawa-text-white hawa-p-2 hawa-rounded-l hawa-text-[0.875rem] ";
3794
+ },
3795
+ valueContainer: function() {
3796
+ return "hawa-rounded-l hawa-h-auto hawa-text-[0.875rem]";
3797
+ }
3798
+ },
3799
+ styles: {
3800
+ placeholder: function(base) {
3801
+ return _object_spread_props(_object_spread({}, base), {
3802
+ fontSize: "0.875rem",
3803
+ textAlign: "right"
3804
+ });
3805
+ }
3806
+ },
3807
+ components: {
3808
+ Option: Option,
3809
+ Menu: Menu,
3810
+ DropdownIndicator: function() {
3811
+ return null;
3812
+ },
3813
+ IndicatorSeparator: function() {
3814
+ return null;
3815
+ }
3816
+ },
3817
+ options: countries_default,
3818
+ isMulti: false,
3819
+ isSearchable: true,
3820
+ isClearable: false,
3821
+ placeholder: "+966",
3822
+ unstyled: true,
3823
+ defaultValue: props.preferredCountry,
3824
+ value: selectedCountry,
3825
+ onChange: function(newValue, action) {
3826
+ return setSelectedCountry(newValue);
3827
+ }
3828
+ }), /* @__PURE__ */ import_react15.default.createElement("input", {
3829
+ onChange: props.handleChange,
3830
+ type: "number",
3831
+ placeholder: "531045453",
3832
+ className: "hawa-block hawa-w-full hawa-rounded-r hawa-z-50 hawa-border hawa-bg-background hawa-p-2 hawa-text-sm hawa-text-gray-900 focus:hawa-border-blue-500 focus:hawa-ring-blue-500"
3833
+ }), props.helperText && /* @__PURE__ */ import_react15.default.createElement("p", {
3834
+ className: "hawa-mb-1 hawa-mt-1 hawa-text-xs hawa-text-red-600 dark:hawa-text-red-500"
3835
+ }, props.helperText)));
3836
+ };
1806
3837
  // components/elements/AppStores.tsx
1807
- var import_react13 = __toESM(require("react"));
3838
+ var import_react16 = __toESM(require("react"));
1808
3839
  var AppStores = function(props) {
1809
- return /* @__PURE__ */ import_react13.default.createElement("div", {
3840
+ return /* @__PURE__ */ import_react16.default.createElement("div", {
1810
3841
  className: "hawa-flex hawa-justify-center"
1811
- }, /* @__PURE__ */ import_react13.default.createElement("div", null, props.store === "apple" ? props.mode === "dark" ? /* @__PURE__ */ import_react13.default.createElement("div", {
3842
+ }, /* @__PURE__ */ import_react16.default.createElement("div", null, props.store === "apple" ? props.mode === "dark" ? /* @__PURE__ */ import_react16.default.createElement("div", {
1812
3843
  className: "hawa-mt-3 hawa-flex hawa-h-14 hawa-w-48 hawa-items-center hawa-justify-center hawa-rounded-lg hawa-bg-black hawa-text-white"
1813
- }, /* @__PURE__ */ import_react13.default.createElement("div", {
3844
+ }, /* @__PURE__ */ import_react16.default.createElement("div", {
1814
3845
  className: "hawa-mr-3"
1815
- }, /* @__PURE__ */ import_react13.default.createElement("svg", {
3846
+ }, /* @__PURE__ */ import_react16.default.createElement("svg", {
1816
3847
  viewBox: "0 0 384 512",
1817
3848
  width: "30"
1818
- }, /* @__PURE__ */ import_react13.default.createElement("path", {
3849
+ }, /* @__PURE__ */ import_react16.default.createElement("path", {
1819
3850
  fill: "currentColor",
1820
3851
  d: "M318.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.7C63.3 141.2 4 184.8 4 273.5q0 39.3 14.4 81.2c12.8 36.7 59 126.7 107.2 125.2 25.2-.6 43-17.9 75.8-17.9 31.8 0 48.3 17.9 76.4 17.9 48.6-.7 90.4-82.5 102.6-119.3-65.2-30.7-61.7-90-61.7-91.9zm-56.6-164.2c27.3-32.4 24.8-61.9 24-72.5-24.1 1.4-52 16.4-67.9 34.9-17.5 19.8-27.8 44.3-25.6 71.9 26.1 2 49.9-11.4 69.5-34.3z"
1821
- }))), /* @__PURE__ */ import_react13.default.createElement("div", null, /* @__PURE__ */ import_react13.default.createElement("div", {
3852
+ }))), /* @__PURE__ */ import_react16.default.createElement("div", null, /* @__PURE__ */ import_react16.default.createElement("div", {
1822
3853
  className: "hawa-text-xs"
1823
- }, "Download on the"), /* @__PURE__ */ import_react13.default.createElement("div", {
3854
+ }, "Download on the"), /* @__PURE__ */ import_react16.default.createElement("div", {
1824
3855
  className: "hawa-font-sans hawa--mt-1 hawa-text-2xl hawa-font-semibold"
1825
- }, "App Store"))) : /* @__PURE__ */ import_react13.default.createElement("div", {
3856
+ }, "App Store"))) : /* @__PURE__ */ import_react16.default.createElement("div", {
1826
3857
  className: "hawa-mt-3 hawa-flex hawa-h-14 hawa-w-48 hawa-items-center hawa-justify-center hawa-rounded-lg hawa-border hawa-border-black hawa-bg-transparent hawa-text-black"
1827
- }, /* @__PURE__ */ import_react13.default.createElement("div", {
3858
+ }, /* @__PURE__ */ import_react16.default.createElement("div", {
1828
3859
  className: "hawa-mr-3"
1829
- }, /* @__PURE__ */ import_react13.default.createElement("svg", {
3860
+ }, /* @__PURE__ */ import_react16.default.createElement("svg", {
1830
3861
  viewBox: "0 0 384 512",
1831
3862
  width: "30"
1832
- }, /* @__PURE__ */ import_react13.default.createElement("path", {
3863
+ }, /* @__PURE__ */ import_react16.default.createElement("path", {
1833
3864
  fill: "currentColor",
1834
3865
  d: "M318.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.7C63.3 141.2 4 184.8 4 273.5q0 39.3 14.4 81.2c12.8 36.7 59 126.7 107.2 125.2 25.2-.6 43-17.9 75.8-17.9 31.8 0 48.3 17.9 76.4 17.9 48.6-.7 90.4-82.5 102.6-119.3-65.2-30.7-61.7-90-61.7-91.9zm-56.6-164.2c27.3-32.4 24.8-61.9 24-72.5-24.1 1.4-52 16.4-67.9 34.9-17.5 19.8-27.8 44.3-25.6 71.9 26.1 2 49.9-11.4 69.5-34.3z"
1835
- }))), /* @__PURE__ */ import_react13.default.createElement("div", null, /* @__PURE__ */ import_react13.default.createElement("div", {
3866
+ }))), /* @__PURE__ */ import_react16.default.createElement("div", null, /* @__PURE__ */ import_react16.default.createElement("div", {
1836
3867
  className: "hawa-text-xs"
1837
- }, "Download on the"), /* @__PURE__ */ import_react13.default.createElement("div", {
3868
+ }, "Download on the"), /* @__PURE__ */ import_react16.default.createElement("div", {
1838
3869
  className: "hawa-font-sans hawa--mt-1 hawa-text-2xl hawa-font-semibold"
1839
- }, "App Store"))) : props.mode === "dark" ? /* @__PURE__ */ import_react13.default.createElement("div", {
3870
+ }, "App Store"))) : props.mode === "dark" ? /* @__PURE__ */ import_react16.default.createElement("div", {
1840
3871
  className: "hawa-mt-3 hawa-flex hawa-h-14 hawa-w-48 hawa-items-center hawa-justify-center hawa-rounded-lg hawa-bg-black hawa-text-white"
1841
- }, /* @__PURE__ */ import_react13.default.createElement("div", {
3872
+ }, /* @__PURE__ */ import_react16.default.createElement("div", {
1842
3873
  className: "hawa-mr-3"
1843
- }, /* @__PURE__ */ import_react13.default.createElement("svg", {
3874
+ }, /* @__PURE__ */ import_react16.default.createElement("svg", {
1844
3875
  viewBox: "30 336.7 120.9 129.2",
1845
3876
  width: "30"
1846
- }, /* @__PURE__ */ import_react13.default.createElement("path", {
3877
+ }, /* @__PURE__ */ import_react16.default.createElement("path", {
1847
3878
  fill: "#FFD400",
1848
3879
  d: "M119.2,421.2c15.3-8.4,27-14.8,28-15.3c3.2-1.7,6.5-6.2,0-9.7 c-2.1-1.1-13.4-7.3-28-15.3l-20.1,20.2L119.2,421.2z"
1849
- }), /* @__PURE__ */ import_react13.default.createElement("path", {
3880
+ }), /* @__PURE__ */ import_react16.default.createElement("path", {
1850
3881
  fill: "#FF3333",
1851
3882
  d: "M99.1,401.1l-64.2,64.7c1.5,0.2,3.2-0.2,5.2-1.3 c4.2-2.3,48.8-26.7,79.1-43.3L99.1,401.1L99.1,401.1z"
1852
- }), /* @__PURE__ */ import_react13.default.createElement("path", {
3883
+ }), /* @__PURE__ */ import_react16.default.createElement("path", {
1853
3884
  fill: "#48FF48",
1854
3885
  d: "M99.1,401.1l20.1-20.2c0,0-74.6-40.7-79.1-43.1 c-1.7-1-3.6-1.3-5.3-1L99.1,401.1z"
1855
- }), /* @__PURE__ */ import_react13.default.createElement("path", {
3886
+ }), /* @__PURE__ */ import_react16.default.createElement("path", {
1856
3887
  fill: "#3BCCFF",
1857
3888
  d: "M99.1,401.1l-64.3-64.3c-2.6,0.6-4.8,2.9-4.8,7.6 c0,7.5,0,107.5,0,113.8c0,4.3,1.7,7.4,4.9,7.7L99.1,401.1z"
1858
- }))), /* @__PURE__ */ import_react13.default.createElement("div", null, /* @__PURE__ */ import_react13.default.createElement("div", {
3889
+ }))), /* @__PURE__ */ import_react16.default.createElement("div", null, /* @__PURE__ */ import_react16.default.createElement("div", {
1859
3890
  className: "hawa-text-xs"
1860
- }, "GET IT ON"), /* @__PURE__ */ import_react13.default.createElement("div", {
3891
+ }, "GET IT ON"), /* @__PURE__ */ import_react16.default.createElement("div", {
1861
3892
  className: "hawa-font-sans hawa--mt-1 hawa-text-xl hawa-font-semibold"
1862
- }, "Google Play"))) : /* @__PURE__ */ import_react13.default.createElement("div", {
3893
+ }, "Google Play"))) : /* @__PURE__ */ import_react16.default.createElement("div", {
1863
3894
  className: "hawa-mt-3 hawa-flex hawa-h-14 hawa-w-48 hawa-items-center hawa-justify-center hawa-rounded-lg hawa-border hawa-border-black hawa-bg-white hawa-text-black"
1864
- }, /* @__PURE__ */ import_react13.default.createElement("div", {
3895
+ }, /* @__PURE__ */ import_react16.default.createElement("div", {
1865
3896
  className: "hawa-mr-3"
1866
- }, /* @__PURE__ */ import_react13.default.createElement("svg", {
3897
+ }, /* @__PURE__ */ import_react16.default.createElement("svg", {
1867
3898
  viewBox: "30 336.7 120.9 129.2",
1868
3899
  width: "30"
1869
- }, /* @__PURE__ */ import_react13.default.createElement("path", {
3900
+ }, /* @__PURE__ */ import_react16.default.createElement("path", {
1870
3901
  fill: "#FFD400",
1871
3902
  d: "M119.2,421.2c15.3-8.4,27-14.8,28-15.3c3.2-1.7,6.5-6.2,0-9.7 c-2.1-1.1-13.4-7.3-28-15.3l-20.1,20.2L119.2,421.2z"
1872
- }), /* @__PURE__ */ import_react13.default.createElement("path", {
3903
+ }), /* @__PURE__ */ import_react16.default.createElement("path", {
1873
3904
  fill: "#FF3333",
1874
3905
  d: "M99.1,401.1l-64.2,64.7c1.5,0.2,3.2-0.2,5.2-1.3 c4.2-2.3,48.8-26.7,79.1-43.3L99.1,401.1L99.1,401.1z"
1875
- }), /* @__PURE__ */ import_react13.default.createElement("path", {
3906
+ }), /* @__PURE__ */ import_react16.default.createElement("path", {
1876
3907
  fill: "#48FF48",
1877
3908
  d: "M99.1,401.1l20.1-20.2c0,0-74.6-40.7-79.1-43.1 c-1.7-1-3.6-1.3-5.3-1L99.1,401.1z"
1878
- }), /* @__PURE__ */ import_react13.default.createElement("path", {
3909
+ }), /* @__PURE__ */ import_react16.default.createElement("path", {
1879
3910
  fill: "#3BCCFF",
1880
3911
  d: "M99.1,401.1l-64.3-64.3c-2.6,0.6-4.8,2.9-4.8,7.6 c0,7.5,0,107.5,0,113.8c0,4.3,1.7,7.4,4.9,7.7L99.1,401.1z"
1881
- }))), /* @__PURE__ */ import_react13.default.createElement("div", null, /* @__PURE__ */ import_react13.default.createElement("div", {
3912
+ }))), /* @__PURE__ */ import_react16.default.createElement("div", null, /* @__PURE__ */ import_react16.default.createElement("div", {
1882
3913
  className: "hawa-text-xs"
1883
- }, "GET IT ON"), /* @__PURE__ */ import_react13.default.createElement("div", {
3914
+ }, "GET IT ON"), /* @__PURE__ */ import_react16.default.createElement("div", {
1884
3915
  className: "hawa-font-sans hawa--mt-1 hawa-text-xl hawa-font-semibold"
1885
3916
  }, "Google Play")))));
1886
3917
  };
3918
+ // components/elements/BackToTop.tsx
3919
+ var import_react17 = __toESM(require("react"));
3920
+ var import_clsx7 = require("clsx");
3921
+ var BackToTop = function(_param) {
3922
+ var props = _extends({}, _object_destructuring_empty(_param));
3923
+ var _ref = _sliced_to_array((0, import_react17.useState)(false), 2), visible = _ref[0], setVisible = _ref[1];
3924
+ var _ref1 = _sliced_to_array((0, import_react17.useState)(null), 2), rect = _ref1[0], _setRect = _ref1[1];
3925
+ var self = (0, import_react17.useRef)(null);
3926
+ var _rect = (0, import_react17.useRef)(rect);
3927
+ var setRect = function(data) {
3928
+ _rect.current = data;
3929
+ _setRect(data);
3930
+ };
3931
+ var getCoords = function() {
3932
+ var anchor = props.anchor.current;
3933
+ if (anchor) {
3934
+ return [
3935
+ anchor.scrollTop,
3936
+ anchor.scrollLeft
3937
+ ];
3938
+ }
3939
+ return [
3940
+ 0,
3941
+ 0
3942
+ ];
3943
+ };
3944
+ var onScroll = function() {
3945
+ var _props_anchor_current;
3946
+ var _getCoords = _sliced_to_array(getCoords(), 2), scrollTop = _getCoords[0], scrollLeft = _getCoords[1];
3947
+ var rect2 = (_props_anchor_current = props.anchor.current) === null || _props_anchor_current === void 0 ? void 0 : _props_anchor_current.getBoundingClientRect();
3948
+ if (rect2) {
3949
+ setVisible(scrollTop >= rect2.height + (props.paddingThreshold || 100));
3950
+ }
3951
+ };
3952
+ var backToTop = function() {
3953
+ if (props.anchor.current) {
3954
+ props.anchor.current.scrollTo({
3955
+ top: 0,
3956
+ behavior: "smooth"
3957
+ });
3958
+ }
3959
+ };
3960
+ (0, import_react17.useEffect)(function() {
3961
+ if (!props.anchor.current) return;
3962
+ props.anchor.current.addEventListener("scroll", onScroll);
3963
+ var interval = setInterval(function() {
3964
+ if (!props.anchor.current) return;
3965
+ var newRect = props.anchor.current.getBoundingClientRect();
3966
+ if (_rect.current == null) return setRect(newRect);
3967
+ if (!(_rect.current.top == newRect.top && _rect.current.left == newRect.left && _rect.current.width == newRect.width && _rect.current.height == newRect.height)) {
3968
+ setRect(newRect);
3969
+ }
3970
+ }, 1);
3971
+ return function() {
3972
+ var _props_anchor_current;
3973
+ (_props_anchor_current = props.anchor.current) === null || _props_anchor_current === void 0 ? void 0 : _props_anchor_current.removeEventListener("scroll", onScroll);
3974
+ clearInterval(interval);
3975
+ };
3976
+ }, []);
3977
+ var getStyles = function() {
3978
+ var _self_current;
3979
+ if (!props.anchor.current || !self.current) return {};
3980
+ var corner = props.corner || "bottom-right";
3981
+ var _corner_split = _sliced_to_array(corner.split("-"), 2), vertical = _corner_split[0], horizontal = _corner_split[1];
3982
+ var anchorRect = props.anchor.current.getBoundingClientRect();
3983
+ var selfRect = (_self_current = self.current) === null || _self_current === void 0 ? void 0 : _self_current.getBoundingClientRect();
3984
+ var width = horizontal == "right" ? anchorRect.width - selfRect.width : 0;
3985
+ var height = vertical == "bottom" ? anchorRect.height - selfRect.height : 0;
3986
+ var style = {
3987
+ top: anchorRect.y + height + (vertical == "bottom" ? -1 : 1) * (props.paddingX || 10),
3988
+ left: anchorRect.x + width + (horizontal == "right" ? -1 : 1) * (props.paddingX || 25)
3989
+ };
3990
+ return style;
3991
+ };
3992
+ return /* @__PURE__ */ import_react17.default.createElement(Button, {
3993
+ className: cn("hawa-fixed hawa-cursor-pointer hawa-rounded hawa-transition-all", visible ? "hawa-pointer-events-all hawa-opacity-100" : "hawa-pointer-events-none hawa-opacity-0"),
3994
+ onClick: backToTop,
3995
+ style: _object_spread_props(_object_spread({}, getStyles()), {
3996
+ transitionProperty: "opacity, background-color"
3997
+ }),
3998
+ ref: self,
3999
+ size: "icon"
4000
+ }, /* @__PURE__ */ import_react17.default.createElement("svg", {
4001
+ className: (0, import_clsx7.clsx)("hawa-h-6 hawa-w-6 hawa-shrink-0 hawa-rotate-180 hawa-transition-all disabled:hawa-bg-gray-200"),
4002
+ "aria-label": "Arrow Icon",
4003
+ viewBox: "0 0 20 20",
4004
+ fill: "currentColor"
4005
+ }, /* @__PURE__ */ import_react17.default.createElement("path", {
4006
+ d: "M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
4007
+ })));
4008
+ };
1887
4009
  // Annotate the CommonJS export names for ESM import in node:
1888
4010
  0 && (module.exports = {
1889
4011
  ActionCard: ActionCard,
1890
4012
  Alert: Alert,
1891
4013
  AppStores: AppStores,
4014
+ BackToTop: BackToTop,
1892
4015
  Breadcrumb: Breadcrumb,
1893
4016
  Button: Button,
1894
4017
  Card: Card,
@@ -1900,6 +4023,7 @@ var AppStores = function(props) {
1900
4023
  Checkbox: Checkbox,
1901
4024
  Chip: Chip,
1902
4025
  CodeBlock: CodeBlock,
4026
+ ColorPicker: ColorPicker,
1903
4027
  Dialog: Dialog,
1904
4028
  DialogContent: DialogContent,
1905
4029
  DialogDescription: DialogDescription,
@@ -1908,8 +4032,10 @@ var AppStores = function(props) {
1908
4032
  DialogTitle: DialogTitle,
1909
4033
  DialogTrigger: DialogTrigger,
1910
4034
  DropdownMenu: DropdownMenu,
4035
+ FileDropzone: FileDropzone,
1911
4036
  Label: Label,
1912
4037
  Loading: Loading,
4038
+ PhoneInput: PhoneInput,
1913
4039
  PinInput: PinInput,
1914
4040
  Popover: Popover,
1915
4041
  PopoverContent: PopoverContent,