UNPKG

tanstack-shadcn-table

Version:

A powerful, feature-rich React table component built on top of TanStack Table v8 with shadcn/ui styling. Optimized bundle size with 55% reduction through peer dependencies.

8 lines (7 loc) 292 B
import { Column } from "../types/types"; import { TableTranslations } from "../lib/i18n"; declare function FilterInput<T>({ column, translations, }: { column: Column<T>; translations?: TableTranslations; }): import("react/jsx-runtime").JSX.Element | null; export default FilterInput;