/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the Chameleon License found in the * LICENSE file in the root directory of this source tree. */ import { useEffect, useState } from "react"; import { ZoomIn, ZoomOut } from "@carbon/icons-react"; interface ImageResultProps { src: string; large?: boolean; completed?: boolean; } export function ImageResult({ src: base64, large = false, completed = true, }: ImageResultProps) { const [expand, setExpand] = useState(false); useEffect(() => { setExpand(large); }, [large]); return base64 ? (
{completed && (
setExpand(!expand)} > {expand ? ( <> ) : ( <> )}
)}
) : ( <> ); }