mantine-entity
Version:
A library combining Mantine, TanStack Query, and Mantine React Table for efficient entity management
9 lines (8 loc) • 353 B
TypeScript
import React from "react";
import { TextInputProps } from "@mantine/core";
import { TField } from "../model";
interface SegmentedInputProps extends TextInputProps {
data: TField<any>["data"];
}
declare const RadioCardInput: React.ForwardRefExoticComponent<SegmentedInputProps & React.RefAttributes<HTMLInputElement>>;
export default RadioCardInput;