UNPKG

stone-kit

Version:
11 lines (9 loc) 279 B
import { default as React, ReactNode } from 'react'; interface InputProps { label: string; handleClear?: () => void; children?: ReactNode; isShowClear?: boolean; } export type ComponentProps = InputProps & React.InputHTMLAttributes<HTMLInputElement>; export {};