Skip to content

Commit

Permalink
feat(blockquote): update icon color
Browse files Browse the repository at this point in the history
  • Loading branch information
PixeledCode committed Nov 21, 2024
1 parent 5221338 commit d145b7b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export const Blockquote = React.forwardRef<HTMLDivElement, BlockquoteProps>(
fontSize="fontSize30"
element={element}
>
<BlockquoteIcon decorative={true} />
<BlockquoteIcon decorative={true} color="colorTextIcon" />
<BlockquoteContext.Provider value={{ url }}>
<Box>{children}</Box>
</BlockquoteContext.Provider>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,7 @@ export const BlockquoteSource = React.forwardRef<HTMLDivElement, BlockquoteSourc
{source}
</Anchor>
) : (
<Text as="span" fontStyle="italic">
{source}
</Text>
<Text as="span">{source}</Text>
)}
</Box>
</>
Expand Down

0 comments on commit d145b7b

Please sign in to comment.