@codegouvfr/react-dsfr
Version:
French State Design System React integration library
10 lines (9 loc) • 311 B
TypeScript
/// <reference types="react" />
export type SearchButtonProps = {
id: string;
searchInputId: string;
clearInputOnSearch: boolean;
allowEmptySearch: boolean;
onClick: ((text: string) => void) | undefined;
};
export declare function SearchButton(props: SearchButtonProps): JSX.Element | null;