UNPKG

nes-ui-react

Version:

A design system that paints the web in 8 bits.

11 lines (10 loc) 472 B
import { IdProps } from "./interface/IdProps"; import { InputProps } from "./interface/InputProps"; import { StyleProps } from "./interface/StyleProps"; export interface BooleanFieldDerivedProps extends StyleProps, IdProps, InputProps { checked?: boolean; } export interface BooleanFieldProps extends BooleanFieldDerivedProps { type: 'radio' | 'checkbox'; } export declare const BooleanField: (props: BooleanFieldProps) => import("react/jsx-runtime").JSX.Element;