UNPKG

easemob-chat-uikit

Version:

![Static Badge](https://img.shields.io/badge/platform-React-green) ![Static Badge](https://img.shields.io/badge/language-typescript-green) ![GitHub commit activity](https://img.shields.io/github/commit-activity/y/easemob/Easemob-UIKit-web) ![GitHub last c

14 lines (13 loc) 455 B
import React, { ReactNode, ChangeEvent } from 'react'; export interface SearchProps { className?: string; prefix?: string; icon?: ReactNode; onChange?: (e: ChangeEvent<HTMLInputElement>) => void; style?: React.CSSProperties; inputStyle?: React.CSSProperties; shape?: 'round' | 'square'; placeholder?: string; } export default function Search(props: SearchProps): import("react/jsx-runtime").JSX.Element; export { Search };