UNPKG

@helpwave/hightide

Version:

helpwave's component and theming library

15 lines (12 loc) 502 B
import * as react_jsx_runtime from 'react/jsx-runtime'; import { InputProps } from './Input.mjs'; import 'react'; import '../../hooks/useDelay.mjs'; import './Label.mjs'; type SearchBarProps = InputProps & { onSearch?: () => void; disableOnSearch?: boolean; containerClassName?: string; }; declare const SearchBar: ({ placeholder, onSearch, disableOnSearch, containerClassName, ...inputProps }: SearchBarProps) => react_jsx_runtime.JSX.Element; export { SearchBar, type SearchBarProps };