No selecting of icon images

This commit is contained in:
Dustin Brett 2023-07-07 21:50:18 -07:00
parent ffc7ce0b18
commit a0b325194b

View File

@ -35,6 +35,7 @@ const StyledIcon = styled.img.attrs<StyledIconProps>(
min-width: ${({ $width }) => $width}px;
object-fit: contain;
opacity: ${({ $moving }) => ($moving ? "50%" : "100%")};
pointer-events: none;
top: ${({ $offset }) => $offset || undefined};
visibility: ${({ $loaded }) => ($loaded ? "visible" : "hidden")};
`;