Is there a way to modify the appearance of the react-phone-number-input component using this npm package: https://www.npmjs.com/package/react-phone-number-input?
I am working with React Hook Form and Tailwind CSS alongside this component. However, I'm facing issues with changing the background and border colors, as well as adjusting the border width. I am uncertain about how to customize the style.
https://i.sstatic.net/T4l0C.png
//React hook form
const {
register,
handleSubmit,
watch,
formState: { errors },
control,
} = useForm();
//Component
<PhoneInputWithCountry
international
name="phone"
control={control}
defaultCountry="BD"
country="BD"
id="phone"
className="rounded rounded-full bg-gray-100 py-1 px-2 text-gray-700 shadow-sm border-green"
/>