UNPKG

@tiller-ds/formik-elements

Version:

Formik elements module of Tiller Design System

11 lines (10 loc) 389 B
/// <reference types="react" /> import { ToggleProps } from "@tiller-ds/form-elements"; declare type ToggleFieldProps = { /** * The accessor value for the component (for validation, fetching, etc.). */ name: string; } & Omit<ToggleProps, "checked" | "onClick">; export default function ToggleField({ name, ...props }: ToggleFieldProps): JSX.Element; export {};