Skip to content

Commit c823ddc

Browse files
committed
use new ButtonLink component
1 parent 5ef1554 commit c823ddc

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/components/StablecoinAccordion/AccordionCustomItem.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,9 @@ export const AccordionCustomItem = (props: AccordionCustomItemProps) => {
9292
</Tag>
9393
)}
9494
</Flex>
95-
<p className="text-start text-md">{t(contentObj.textPreview)}</p>
95+
<p className="text-start text-md text-body-medium">
96+
{t(contentObj.textPreview)}
97+
</p>
9698
</div>
9799
</Flex>
98100
<MoreOrLessLink isOpen={open} />

src/components/StablecoinAccordion/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ import { MdArrowForward } from "react-icons/md"
33

44
import { ChildOnlyProp, TranslationKey } from "@/lib/types"
55

6+
import { ButtonLink } from "@/components/ui/buttons/Button"
67
import { Flex } from "@/components/ui/flex"
78
import InlineLink, { BaseLink } from "@/components/ui/Link"
89
import { LinkBox, LinkOverlay } from "@/components/ui/link-box"
910

1011
import { Accordion } from "../../../tailwind/ui/accordion"
11-
import { ButtonLink } from "../Buttons"
1212
import CardList from "../CardList"
1313
import InfoBanner from "../InfoBanner"
1414
import Translation from "../Translation"

0 commit comments

Comments
 (0)