import { Button, Tooltip } from '@chakra-ui/react'; import { DynamicIcon } from '~/components'; import type { TPathButton } from './types'; export const PathButton = (props: TPathButton): JSX.Element => { const { onOpen } = props; return ( ); };