@sikka/hawa 0.27.22-next → 0.27.23-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.
@@ -3,6 +3,13 @@
3
3
  // elements/phoneInput/PhoneInput.tsx
4
4
  import React5, { useState, useRef, useEffect } from "react";
5
5
 
6
+ // util/index.ts
7
+ import { clsx } from "clsx";
8
+ import { twMerge } from "tailwind-merge";
9
+ function cn(...inputs) {
10
+ return twMerge(clsx(inputs));
11
+ }
12
+
6
13
  // countries.ts
7
14
  var countries = [
8
15
  {
@@ -1696,13 +1703,6 @@ var countries = [
1696
1703
  ];
1697
1704
  var countries_default = countries;
1698
1705
 
1699
- // util/index.ts
1700
- import { clsx } from "clsx";
1701
- import { twMerge } from "tailwind-merge";
1702
- function cn(...inputs) {
1703
- return twMerge(clsx(inputs));
1704
- }
1705
-
1706
1706
  // elements/label/Label.tsx
1707
1707
  import * as React2 from "react";
1708
1708
 
@@ -2060,7 +2060,7 @@ var PhoneInput = ({ labelProps, ...props }) => {
2060
2060
  onChange: handleInputChange,
2061
2061
  value: phoneNumber,
2062
2062
  type: "tel",
2063
- placeholder: "531045453"
2063
+ placeholder: props.placeholder
2064
2064
  }
2065
2065
  ))), /* @__PURE__ */ React5.createElement(
2066
2066
  "p",