Skip to content

Commit

Permalink
code review
Browse files Browse the repository at this point in the history
  • Loading branch information
roienatan committed Nov 30, 2023
1 parent 9965317 commit 2b4ab60
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@
background-color: $c-pink-active-feed-cards;
margin-left: 2.8rem;
margin-right: unset;

.mentionText {
color: $c-pink-mention-2;
}
Expand Down
5 changes: 2 additions & 3 deletions src/shared/icons/file.icon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,16 @@ const BASE_HEIGHT = 78;
const HEIGHT_COEFFICIENT = BASE_HEIGHT / BASE_WIDTH;

interface GalleryIconProps {
iconColor?: string;
color?: string;
className?: string;
size?: number;
}

export default function FileIcon({
iconColor,
color = "currentColor",
size = BASE_WIDTH,
className,
}: GalleryIconProps): ReactElement {
const color = iconColor ?? "currentColor";
return (
<svg
className={className}
Expand Down

0 comments on commit 2b4ab60

Please sign in to comment.