diff --git a/src/components/common/CustomEmoji.tsx b/src/components/common/CustomEmoji.tsx index 13817fe95..b7c76e18d 100644 --- a/src/components/common/CustomEmoji.tsx +++ b/src/components/common/CustomEmoji.tsx @@ -30,6 +30,7 @@ type OwnProps = { className?: string; loopLimit?: number; style?: string; + isBig?: boolean; withGridFix?: boolean; withSharedAnimation?: boolean; sharedCanvasRef?: React.RefObject; @@ -48,6 +49,7 @@ const CustomEmoji: FC = ({ ref, documentId, size = STICKER_SIZE, + isBig, className, loopLimit, style, @@ -143,7 +145,7 @@ const CustomEmoji: FC = ({ = ({ className={buildClassName('AnimatedEmoji media-inner', sticker?.id === LIKE_STICKER_ID && 'like-sticker-thumb')} style={style} size={size} + isBig withSharedAnimation forceOnHeavyAnimation observeIntersectionForLoading={observeIntersection}