react-phone-number-input
Version:
Telephone number input React component
26 lines (24 loc) • 1.18 kB
JavaScript
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
import React from 'react';
import PropTypes from 'prop-types';
import ReactHookFormInput from './ReactHookFormInput';
import PhoneInputWithCountry_ from '../PhoneInputWithCountryDefault';
import { metadata as metadataType } from '../PropTypes';
export function createPhoneInput(defaultMetadata) {
var PhoneInputWithCountry = function PhoneInputWithCountry(props, ref) {
return React.createElement(ReactHookFormInput, _extends({}, props, {
ref: ref,
Component: PhoneInputWithCountry_
}));
};
PhoneInputWithCountry = React.forwardRef(PhoneInputWithCountry);
PhoneInputWithCountry.propTypes = {
metadata: metadataType.isRequired
};
PhoneInputWithCountry.defaultProps = {
metadata: defaultMetadata
};
return PhoneInputWithCountry;
}
export default createPhoneInput();
//# sourceMappingURL=PhoneInputWithCountry.js.map