UNPKG

@helpwave/hightide

Version:

helpwave's component and theming library

12 lines (9 loc) 469 B
import * as react_jsx_runtime from 'react/jsx-runtime'; import { Column } from '@tanstack/react-table'; type TableFilterType = 'text' | 'range' | 'dateRange'; type TableFilterButtonProps<T = unknown> = { filterType: TableFilterType; column: Column<T>; }; declare const TableFilterButton: <T>({ filterType, column, }: TableFilterButtonProps<T>) => react_jsx_runtime.JSX.Element; export { TableFilterButton, type TableFilterButtonProps, type TableFilterType };