import { Flex, useColorModeValue } from '@chakra-ui/react' import React from 'react' type Props = { isVisible: boolean isExpanded: boolean onRef: (ref: HTMLDivElement) => void } export const PlaceholderNode = ({ isVisible, isExpanded, onRef }: Props) => { return ( ) }