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