diff --git a/docs/src/__examples__/Popover/DEFAULT.tsx b/docs/src/__examples__/Popover/DEFAULT.tsx
index 81ab67c77f..0cdf60be50 100644
--- a/docs/src/__examples__/Popover/DEFAULT.tsx
+++ b/docs/src/__examples__/Popover/DEFAULT.tsx
@@ -1,34 +1,43 @@
import React from "react";
-import { Popover, Button, ButtonLink, Stack } from "@kiwicom/orbit-components";
+import {
+ Popover,
+ Button,
+ ButtonLink,
+ Stack,
+ OrbitProvider,
+ defaultTheme,
+} from "@kiwicom/orbit-components";
import { QuestionCircle } from "@kiwicom/orbit-components/icons";
export default {
Example: () => (
-
-
- Reference
-
-
- Guidelines
-
-
- }
- >
- } />
-
+
+
+
+ Reference
+
+
+ Guidelines
+
+
+ }
+ >
+ } />
+
+
),
exampleKnobs: [
{
diff --git a/docs/src/__examples__/Popover/TRIGGER.tsx b/docs/src/__examples__/Popover/TRIGGER.tsx
index 0115f5ffe7..fc45ddaec6 100644
--- a/docs/src/__examples__/Popover/TRIGGER.tsx
+++ b/docs/src/__examples__/Popover/TRIGGER.tsx
@@ -1,35 +1,44 @@
import React from "react";
-import { Popover, Button, ButtonLink, Stack } from "@kiwicom/orbit-components";
+import {
+ Popover,
+ Button,
+ ButtonLink,
+ Stack,
+ OrbitProvider,
+ defaultTheme,
+} from "@kiwicom/orbit-components";
import { ChevronDown } from "@kiwicom/orbit-components/icons";
export default {
Example: () => (
-
-
- Reference
-
-
- Guidelines
-
-
- }
- >
- } type="secondary">
- Learn more
-
-
+
+
+
+ Reference
+
+
+ Guidelines
+
+
+ }
+ >
+ } type="secondary">
+ Learn more
+
+
+
),
};