zp-bee
Version:
zp-bee,是一款基于 Dumi,由 React + TypeScript 开发的组件库 🎉。
13 lines (12 loc) • 452 B
TypeScript
import React from 'react';
import { InputProps } from './Input';
import { TextAreaProps } from './TextArea';
export declare type BeeTextAreaProps = TextAreaProps;
export interface BeeInputProps extends InputProps {
label: string;
}
declare const BeeInput: {
(props: BeeInputProps): JSX.Element;
BeeTextArea: React.ForwardRefExoticComponent<TextAreaProps & React.RefAttributes<import("./TextArea").TextAreaRef>>;
};
export default BeeInput;