tanuki-ui
Version:
HTML-first React component library with semantic elements, multi-OS themes, and production-ready visual node editor
9 lines (8 loc) • 438 B
TypeScript
import { default as React } from 'react';
export type HTMLInputElementProps = React.PropsWithChildren<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement> & {
[K in `data-${string}`]?: string;
} & {
switch?: "true" | "false";
indeterminate?: boolean;
}>;
export declare const Input: React.ForwardRefExoticComponent<Omit<HTMLInputElementProps, "ref"> & React.RefAttributes<HTMLInputElement>>;