import { ButtonGroup, IconButton } from '@chakra-ui/react'; import { useReactFlow } from 'reactflow'; import { DynamicIcon } from '~/elements'; export const Controls = (): JSX.Element => { const { fitView, zoomIn, zoomOut } = useReactFlow(); return ( } onClick={() => zoomIn()} aria-label="Zoom In" /> } onClick={() => zoomOut()} aria-label="Zoom Out" /> } onClick={() => fitView()} aria-label="Fit Nodes" /> ); };