mod-arch-shared
Version:
Shared UI components and utilities for modular architecture micro-frontend projects
12 lines • 511 B
TypeScript
import * as React from 'react';
import { SearchInputProps } from '@patternfly/react-core';
type ThemeAwareSearchInputProps = Omit<SearchInputProps, 'onChange' | 'onClear'> & {
onChange: (value: string) => void;
onClear?: () => void;
/** Label shown in the MUI fieldset legend */
fieldLabel?: string;
'data-testid'?: string;
};
declare const ThemeAwareSearchInput: React.FC<ThemeAwareSearchInputProps>;
export default ThemeAwareSearchInput;
//# sourceMappingURL=ThemeAwareSearchInput.d.ts.map