UNPKG

@react-querybuilder/tremor

Version:

Custom Tremor components for react-querybuilder

12 lines (11 loc) 571 B
import type { SwitchProps } from "@tremor/react"; import * as React from "react"; import type { NotToggleProps } from "react-querybuilder"; /** * @group Props */ export interface TremorNotToggleProps extends NotToggleProps, Omit<Partial<SwitchProps>, "label"> {} /** * @group Components */ export declare const TremorNotToggle: ({ className, handleOnChange, label, checked, title, disabled, testID, path: _path, level: _level, context: _context, validation: _validation, schema: _schema, ruleGroup: _ruleGroup,...otherProps }: TremorNotToggleProps) => React.JSX.Element;