Skip to content

Commit

Permalink
chore: remove unsed import
Browse files Browse the repository at this point in the history
  • Loading branch information
belapferreira committed Nov 10, 2023
1 parent a576361 commit cde8897
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions src/app/components/Accordion/AccordionContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import * as Accordion from '@radix-ui/react-accordion';
import Markdown from 'react-markdown';

import {
Box,
Divider,
IconWorld16,
IconTextBox16,
Expand Down Expand Up @@ -124,16 +125,16 @@ export const AccordionContent = forwardRef<

return (
<>
<div
<Box
key={item?.id}
className="text-app-grey-800 flex items-center gap-4"
className="flex items-center gap-4 text-app-grey-800"
>
<div>{<Icon />}</div>
<Box>{<Icon />}</Box>

<Markdown className="flex flex-col gap-2 text-app-grey-900">
{item?.text}
</Markdown>
</div>
</Box>

<Divider />
</>
Expand Down
2 changes: 1 addition & 1 deletion src/app/components/Accordion/AccordionTrigger.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ComponentProps, ComponentRef, forwardRef, useCallback } from 'react';
import { ComponentProps, ComponentRef, forwardRef } from 'react';
import * as Accordion from '@radix-ui/react-accordion';

import {
Expand Down

0 comments on commit cde8897

Please sign in to comment.