import { Button, HStack, Icon } from "@chakra-ui/react"; import { BsArrowClockwise } from "react-icons/bs"; export const CellOptions = ({ refetchingOutput, refetchOutput, }: { refetchingOutput: boolean; refetchOutput: () => void; }) => { return ( {!refetchingOutput && ( )} ); };