diff --git a/README.md b/README.md
index 895a0e1..cc17ea5 100644
--- a/README.md
+++ b/README.md
@@ -79,6 +79,7 @@ Apart from the phone-specific properties described below, all [Input](https://an
|--------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------|
| value | An object containing a parsed phone number or the raw number. This also applies to the `initialValue` property of [Form.Item](https://ant.design/components/form#formitem). | [object](#value) / string |
| country | Country code to be selected by default. By default, it will show the flag of the user's country. | string |
+| enableArrow | Shows an arrow next to the country flag. Default value is `false`. | boolean |
| enableSearch | Enables search in the country selection dropdown menu. Default value is `false`. | boolean |
| searchNotFound | The value is shown if `enableSearch` is `true` and the query does not match any country. Default value is `No country found`. | string |
| searchPlaceholder | The value is shown if `enableSearch` is `true`. Default value is `Search country`. | string |
diff --git a/examples/antd4.x/package.json b/examples/antd4.x/package.json
index f9a06b9..edb1899 100644
--- a/examples/antd4.x/package.json
+++ b/examples/antd4.x/package.json
@@ -7,7 +7,7 @@
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"antd": "^4.24.8",
- "antd-phone-input": "^0.3.8",
+ "antd-phone-input": "^0.3.9",
"craco-less": "^2.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
diff --git a/examples/antd4.x/src/Demo.tsx b/examples/antd4.x/src/Demo.tsx
index f6dbf98..31b3fe1 100644
--- a/examples/antd4.x/src/Demo.tsx
+++ b/examples/antd4.x/src/Demo.tsx
@@ -19,6 +19,7 @@ import CheckOutlined from "@ant-design/icons/CheckOutlined";
const Demo = () => {
const [form] = useForm();
const [value, setValue] = useState(null);
+ const [arrow, setArrow] = useState(false);
const [strict, setStrict] = useState(false);
const [search, setSearch] = useState(false);
const [copied, setCopied] = useState(false);
@@ -34,13 +35,14 @@ const Demo = () => {
const code = useMemo(() => {
let code = "