UNPKG

@rainliu/y-ui

Version:

# @rainliu/y-ui > 一款基于 React 的现代化 UI 组件库,提供优雅、简洁且易于使用的组件,助力快速开发高质量的 Web 应用。

9 lines (6 loc) 232 B
import React from 'react'; interface InputWithButtonProps { onSubmit: (value: string) => void; } declare const InputWithButton: React.FC<InputWithButtonProps>; export { type InputWithButtonProps, InputWithButton as default };