UNPKG

mantine-entity

Version:

A library combining Mantine, TanStack Query, and Mantine React Table for efficient entity management

8 lines (7 loc) 351 B
import React from "react"; import { SegmentedControlProps, TextInputProps } from "@mantine/core"; interface SegmentedInputProps extends TextInputProps { data: SegmentedControlProps["data"]; } declare const SegmentedInput: React.ForwardRefExoticComponent<SegmentedInputProps & React.RefAttributes<HTMLInputElement>>; export default SegmentedInput;