Note: Using type assertions to maintain string-based implementation.
While stricter types are being enforced by TypeScript, our implementation
successfully works with strings. We use type assertions here since:
The component functions correctly with strings
The existing API contract with consumers uses strings
Renders PhoneNumberInput
Note: Using type assertions to maintain string-based implementation. While stricter types are being enforced by TypeScript, our implementation successfully works with strings. We use type assertions here since: