Fixed some styling issues

This commit is contained in:
Patrick Fic
2020-12-09 16:45:22 -08:00
parent 1ca2e16e73
commit 2981c7ba67
4 changed files with 20 additions and 21 deletions

View File

@@ -7,22 +7,13 @@ import "./phone-form-item.styles.scss";
function FormItemPhone(props, ref) {
return (
<PhoneInput
country="ca"
onlyCountries={["ca", "us"]}
ref={ref}
className="ant-input"
{...props}
/>
);
// return (
// <NumberFormat
// {...props}
// className="ant-input"
// ref={ref}
// type="tel"
// format="###-###-####"
// />
// );
}
export default forwardRef(FormItemPhone);