diff --git a/docs-site/src/examples/customInput.js b/docs-site/src/examples/customInput.js
index 0838e982f..731200311 100644
--- a/docs-site/src/examples/customInput.js
+++ b/docs-site/src/examples/customInput.js
@@ -1,15 +1,17 @@
() => {
const [startDate, setStartDate] = useState(new Date());
- const ExampleCustomInput = forwardRef(({ value, onClick }, ref) => (
-
- ));
+ const ExampleCustomInput = forwardRef(
+ ({ value, onClick, className }, ref) => (
+
+ ),
+ );
return (
setStartDate(date)}
- customInput={}
+ customInput={}
/>
);
};