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