@massds/mayflower-react
Version:
React versions of Mayflower design system UI components
17 lines (16 loc) • 513 B
TypeScript
import { TeaserSearchProps } from '../GenTeaserSearch';
export interface GenTeaserSearchBarProps {
/**
search:
target: target url of the search bar
id: id of the search bar
queryInput: query input variable to replace in the target url with the user entered term
placeholder: Placeholder text of the search bar.
*/
search: TeaserSearchProps;
}
/**
* Search bar
*/
declare const GenTeaserSearchBar: (props: GenTeaserSearchBarProps) => any;
export default GenTeaserSearchBar;