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 2231780 commit 69e22f4Copy full SHA for 69e22f4
src/components/ProductCard.tsx
@@ -3,10 +3,9 @@ import { useTranslation } from "next-i18next"
3
import type { ReactNode } from "react"
4
import { Badge } from "@chakra-ui/react"
5
6
-import { ButtonLink } from "@/components/Buttons"
7
-
8
import { cn } from "@/lib/utils/cn"
9
+import { ButtonLink } from "./ui/buttons/Button"
10
import { Center, Flex, HStack } from "./ui/flex"
11
import GitStars from "./GitStars"
12
import { TwImage } from "./Image"
@@ -135,7 +134,7 @@ const ProductCard = ({
135
134
</SubjectBadge>
136
))}
137
</HStack>
138
- <ButtonLink href={url} m={4} height={20}>
+ <ButtonLink href={url} className="m-4 h-20">
139
{t("open")} {name}
140
</ButtonLink>
141
</Flex>
0 commit comments