@primer/react
Version:
An implementation of GitHub's Primer Design System using React
13 lines • 498 B
TypeScript
//#region src/deprecated/FilteredSearch/FilteredSearch.d.ts
type FilteredSearchProps = React.HTMLAttributes<HTMLElement>;
/**
* @deprecated A new filter component is in progress.
* Until the new filter component is ready, you can use Button + TextInput + ActionList to reproduce this pattern.
*/
declare function FilteredSearch({
children,
className,
...rest
}: FilteredSearchProps): import("react").JSX.Element;
//#endregion
export { type FilteredSearchProps, FilteredSearch as default };