We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8266971 commit 27a538aCopy full SHA for 27a538a
src/@chakra-ui/gatsby-plugin/components/index.ts
@@ -1,3 +1,9 @@
1
-export * from "./Link"
2
-export * from "./Button"
3
-export * from "./Tag"
+import { Button } from "./Button"
+import { Link } from "./Link"
+import { Tag } from "./Tag"
4
+
5
+export default {
6
+ Button,
7
+ Link,
8
+ Tag,
9
+}
src/@chakra-ui/gatsby-plugin/theme.ts
@@ -11,7 +11,7 @@ import styles from "./styles"
11
import foundations from "./foundations"
12
13
// Component style overrides
14
-import * as components from "./components"
+import components from "./components"
15
16
import semanticTokens from "./semanticTokens"
17
0 commit comments