@atlaskit/atlassian-navigation
Version:
A horizontal navigation component for Atlassian products.
17 lines (16 loc) • 420 B
TypeScript
import { BaseIconButtonProps } from '../IconButton/types';
export declare type SearchProps = BaseIconButtonProps & {
/**
* Placeholder text for the search textbox.
*/
placeholder: string;
/**
* Used to describe the search icon and text field for users viewing the
* page with a screen reader
*/
label: string;
/**
* Value of search field.
*/
value?: string;
};