import { Popover, PopoverTrigger, Flex, Tooltip, IconButton, PopoverContent, IconButtonProps, } from '@chakra-ui/react' import { UserIcon } from 'assets/icons' import { Variable } from 'models' import React from 'react' import { VariableSearchInput } from '../VariableSearchInput' type Props = { onSelectVariable: ( variable: Pick | undefined ) => void } & Omit export const VariablesButton = ({ onSelectVariable, ...props }: Props) => { return ( } pos="relative" {...props} /> ) }