UNPKG

adwaita-web

Version:

A GTK inspired toolkit designed to build awesome web apps

17 lines (16 loc) 328 B
import React from "react"; import { Input } from "./Input"; function TableTextFilter({ column: { filterValue, setFilter, id } }) { return /* @__PURE__ */ React.createElement(Input, { allowClear: true, size: "small", id, value: filterValue || "", onChange: setFilter }); } export { TableTextFilter };