import { ActionIcon, type ActionIconProps, Menu, Tooltip } from '@mantine/core'; import { type HTMLPropsRef, type MRT_RowData, type MRT_TableInstance, } from '../../types'; import { MRT_ShowHideColumnsMenu } from '../menus/MRT_ShowHideColumnsMenu'; interface Props extends ActionIconProps, HTMLPropsRef { table: MRT_TableInstance; } export const MRT_ShowHideColumnsButton = ({ table, title, ...rest }: Props) => { 'use no memo'; const { icons: { IconColumns }, localization: { showHideColumns }, } = table.options; return ( ); };