import React from 'react'; import classNames from 'classnames'; import { PhoneInput as CorePhoneInput } from '@shoptet/ui-core-web'; import type { SafeOmit } from '@shoptet/utils'; import type { Exact, SafeExtract, Size } from '../../../types'; import type { CommonInputProps, PlaceholderProps } from '../types'; export interface PhoneInputProps extends CommonInputProps, PlaceholderProps { value?: string; defaultValue?: string; width?: SafeExtract; } export const PhoneInput = React.forwardRef( ({ width, error, warning, label, ...rest }, ref) => { rest satisfies Exact, typeof rest>; return ( ); } ); PhoneInput.displayName = 'PhoneInput';