diff options
Diffstat (limited to 'front/src/components/post/Body.tsx')
-rw-r--r-- | front/src/components/post/Body.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/front/src/components/post/Body.tsx b/front/src/components/post/Body.tsx index 2e4e2f8..e8b659c 100644 --- a/front/src/components/post/Body.tsx +++ b/front/src/components/post/Body.tsx @@ -6,7 +6,7 @@ import type { Media as MediaType, ExternalContent, } from "@/types/trill"; -import crow from "@/assets/icons/crow.svg"; +import Icon from "@/components/Icon"; import type { PostProps } from "./Post"; import Media from "./Media"; import JSONContent, { YoutubeSnippet } from "./External"; @@ -168,7 +168,7 @@ function Ref({ r, nest }: { r: Reference; nest: number }) { nest: nest + 1, className: "quote-in-post", })(Quote); - return <Card logo={crow}>{comp}</Card>; + return <Card logo="crow">{comp}</Card>; } return <></>; } |