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 3eb7461 commit 9713f85Copy full SHA for 9713f85
website/templates/LandingPage/components/InfoIconTooltip.tsx
@@ -1,6 +1,6 @@
1
-import { InfoOutlineIcon } from "@chakra-ui/icons"
2
import { Flex, Tooltip } from "@chakra-ui/react"
3
import { FC } from "react"
+import { InfoOutlineIcon } from "./icons/InfoOutlineIcon"
4
5
type WithInfoIconAndTooltipProps = {
6
tooltip: string
website/templates/LandingPage/components/icons/InfoOutlineIcon.tsx
@@ -0,0 +1,12 @@
+import {
+ IconProps,
+ InfoOutlineIcon as ChakraInfoOutlineIcon,
+} from "@chakra-ui/icons"
+import { FC } from "react"
+
7
+/**
8
+ * This is a workaround for the following issue:
9
+ * https://github.com/chakra-ui/chakra-ui/issues/3714#issuecomment-1518284403
10
+ */
11
+export const InfoOutlineIcon: FC<IconProps> =
12
+ ChakraInfoOutlineIcon as FC<IconProps>
0 commit comments