import {
  SharedPhoneStep,
  type PhoneStepProps,
  type PhoneStepValues,
} from '@/features/phone-step/PhoneStep';

export type { PhoneStepProps, PhoneStepValues };

export function PhoneStep(props: PhoneStepProps) {
  return <SharedPhoneStep {...props} inputId="vendor-otp-phone" layout="stacked" />;
}
