UNPKG

zp-bee

Version:

zp-bee,是一款基于 Dumi,由 React + TypeScript 开发的组件库 🎉。

14 lines (13 loc) 436 B
import React from 'react'; export declare type InputGenParams = { inputProps: Record<string, any>; inject: Map<Symbol, Record<string, Function>>; }; interface Props { value?: string | number; defaultValue?: string | number; style?: React.CSSProperties; placeholder?: string; } declare const inputGen: (params: InputGenParams) => React.MemoExoticComponent<(props: Props) => JSX.Element>; export default inputGen;