rfa
Version:
**React Form Architect** is an ultimate solution for creating and rendering forms in React. Its main focus is to provide users with a tool to define, render and share a form in a browser.
15 lines (14 loc) • 429 B
TypeScript
import React from 'react';
declare type SearchStateType = {
label: boolean;
content: boolean;
};
declare type Props = {
onSearch: (query: string | undefined) => void;
searchIn: SearchStateType;
onSearchInChange: ({ label, content }: SearchStateType) => void;
matchPartial: boolean;
onMatchPartial: (match: boolean) => void;
};
export declare const SearchBar: React.FC<Props>;
export {};