import { forwardRef } from 'react'; import dynamic from 'next/dynamic'; import { Button, Icon, Tooltip } from '@chakra-ui/react'; import type { TRequeryButton } from './types'; const Repeat = dynamic(() => import('@meronex/icons/fi').then(i => i.FiRepeat)); export const RequeryButton = forwardRef((props, ref) => { const { requery, ...rest } = props; return ( ); });