UNPKG

@connectycube/chat-widget

Version:

A customizable React chat widget built on the ConnectyCube platform, enabling real-time messaging, calls, and user engagement in any web app.

15 lines 608 B
import * as React from 'react'; import { type InputProps } from './input'; import { type LucideProps } from 'lucide-react'; interface SearchProps extends InputProps { onSearch?: (value: string) => void; onCancel?: () => void; hasSearchIcon?: boolean; hasCancelIcon?: boolean; searchIconProps?: LucideProps; cancelIconProps?: LucideProps; containerProps?: React.ComponentProps<'div'>; } declare const Search: React.ForwardRefExoticComponent<Omit<SearchProps, "ref"> & React.RefAttributes<HTMLInputElement>>; export { Search, type SearchProps }; //# sourceMappingURL=search.d.ts.map