import { Stack, IconButton } from '@chakra-ui/react' import { PlusIcon, MinusIcon } from 'assets/icons' import { headerHeight } from '../TypebotHeader' type Props = { onZoomIn: () => void onZoomOut: () => void } export const ZoomButtons = ({ onZoomIn, onZoomOut }: Props) => ( } aria-label={'Zoom out'} size="sm" onClick={onZoomIn} bgColor="white" borderBottomRadius={0} /> } aria-label={'Zoom out'} size="sm" onClick={onZoomOut} bgColor="white" borderTopRadius={0} /> )