UNPKG

@atlaskit/atlassian-navigation

Version:

A horizontal navigation component for Atlassian apps.

20 lines (19 loc) 533 B
import { type BaseIconButtonProps } from '../IconButton/types'; /** * @deprecated `@atlaskit/atlassian-navigation` is deprecated. Use `@atlaskit/navigation-system` instead. */ export type SearchProps = BaseIconButtonProps & { /** * Placeholder text for the search textbox. */ placeholder: string; /** * Used to describe the search icon and text field for people viewing the * page with a screen reader. */ label: string; /** * Value of search field. */ value?: string; };