UNPKG

@massds/mayflower-react

Version:

React versions of Mayflower design system UI components

15 lines (14 loc) 553 B
import { InputTextProps } from '../InputText'; import { ButtonWithIconProps } from '../ButtonWithIcon'; export interface SearchBannerFormProps { /** The URL to submit form data to */ action?: string; /** Custom submit function */ onSubmit?(...args: unknown[]): unknown; /** The properties for the text input field */ inputText: InputTextProps; /** The Search button */ buttonSearch: ButtonWithIconProps; } declare const SearchBannerForm: (searchBannerForm: SearchBannerFormProps) => any; export default SearchBannerForm;