import { Box } from '@chakra-ui/react' import { Coordinates } from '../types' import { headerHeight } from '@/features/editor/constants' type Props = { origin: Coordinates dimension: { width: number height: number } } export const SelectBox = ({ origin, dimension }: Props) => ( )