semantic-ui-react
Version:
The official Semantic-UI-React integration.
30 lines (20 loc) • 667 B
TypeScript
import * as React from 'react'
export interface DropdownSearchInputProps extends StrictDropdownSearchInputProps {
[key: string]: any
}
export interface StrictDropdownSearchInputProps {
/** An element type to render as (string or function). */
as?: any
/** An input can have the auto complete. */
autoComplete?: string
/** Additional classes. */
className?: string
/** An input can receive focus. */
tabIndex?: number | string
/** The HTML input type. */
type?: string
/** Stored value. */
value?: number | string
}
declare const DropdownSearchInput: React.ComponentClass<DropdownSearchInputProps>
export default DropdownSearchInput