import * as React from "react"; import { IconButton } from "@chakra-ui/core"; const TableIconButton = ({ icon, onClick, isDisabled, color, children, ...props }) => ( {children} ); export default TableIconButton;