import { type StackProps, VStack } from "@chakra-ui/react"; import { CellOptions } from "./CellOptions"; export const CellContent = ({ hardRefetch, hardRefetching, children, ...props }: { hardRefetch: () => void; hardRefetching: boolean; } & StackProps) => ( {children} );