import clsx from 'clsx'; import classes from './MRT_FilterRangeFields.module.css'; import { Box, type BoxProps } from '@mantine/core'; import { MRT_FilterTextInput } from './MRT_FilterTextInput'; import { type MRT_Header, type MRT_RowData, type MRT_TableInstance, } from '../../types'; interface Props extends BoxProps { header: MRT_Header; table: MRT_TableInstance; } export const MRT_FilterRangeFields = ({ header, table, ...rest }: Props) => { 'use no memo'; return ( ); };