UNPKG

@dnb/eufemia

Version:

DNB Eufemia Design System UI Library

10 lines (9 loc) 623 B
import type { InputProps } from '../input/Input'; export type FilterSearchProps = { label: string; submitBehavior?: 'manual'; onChange?: (value: string) => void; className?: string; } & Omit<InputProps, 'label' | 'labelDirection' | 'value' | 'onChange' | 'icon' | 'stretch' | 'size' | 'iconPosition' | 'showClearButton' | 'showSubmitButton' | 'type' | 'className' | 'autoCapitalize' | 'autoCorrect' | 'spellCheck'>; declare function FilterSearch({ label, submitBehavior, onChange: onChangeProp, className, ...rest }: FilterSearchProps): import("react/jsx-runtime").JSX.Element; export default FilterSearch;