import React from 'react'; import { IconButton } from '@chakra-ui/button'; import { Tooltip } from '@chakra-ui/tooltip'; import PropTypes from 'prop-types'; export default function TooltipActionBtn(props) { const { clickHandler, icon, color, size='xs', tooltip, ...rest } = props; return ( ); } TooltipActionBtn.propTypes = { clickHandler: PropTypes.func, icon: PropTypes.element, color: PropTypes.string, size: PropTypes.oneOf(['xs', 'sm', 'md', 'lg']), tooltip: PropTypes.string }