@procore/core-react
Version:
React library of Procore Design Guidelines
16 lines (10 loc) • 543 B
TypeScript
import React from 'react';
import type { SearchProps } from './Search.types';
/**
Our users use search to find items on a tool’s landing page or, in forms, users
use a search typeahead to find information to associate with the form.
@since 10.19.0
@see [Storybook](https://stories.core.procore.com/?path=/story/core-react_demos-search--demo)
@see [Design Guidelines](https://design.procore.com/search-component)
*/
export declare const Search: React.ForwardRefExoticComponent<SearchProps & React.RefAttributes<HTMLInputElement>>;