Skip to content

Commit

Permalink
review: replace icon in SelectArtworkListItem
Browse files Browse the repository at this point in the history
  • Loading branch information
fladson committed Mar 27, 2024
1 parent 6d4a020 commit af97280
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { SelectArtworkListItem_item$data } from "__generated__/SelectArtworkList
import { extractNodes } from "Utils/extractNodes"
import { SavesEntityImage } from "Apps/CollectorProfile/Routes/Saves/Components/SavesEntityImage"
import CheckmarkStrokeIcon from "@artsy/icons/CheckmarkStrokeIcon"
import LockIcon from "@artsy/icons/LockIcon"
import HideIcon from "@artsy/icons/HideIcon"
import { useFeatureFlag } from "System/useFeatureFlag"

const ICON_SIZE = 24
Expand Down Expand Up @@ -53,10 +53,10 @@ const SelectArtworkListItem: FC<SelectArtworkListItemProps> = ({
<Flex>
<Text variant="sm-display">{item.name}</Text>
{shareableWithPartnersEnabled && !item.shareableWithPartners && (
<LockIcon
<HideIcon
marginLeft={0.5}
minWidth="18px"
data-testid="lock-icon"
data-testid="hide-icon"
/>
)}
</Flex>
Expand Down

0 comments on commit af97280

Please sign in to comment.