UNPKG

@navikt/ds-react

Version:

React components from the Norwegian Labour and Welfare Administration.

9 lines (8 loc) 581 B
import React from "react"; import { type SearchProps } from "../../../form/search"; import type { SearchNativeProps } from "../../../form/search/Search"; type DataToolbarSearchFieldProps = Omit<SearchNativeProps, "data-color"> & Pick<SearchProps, "label" | "onChange">; declare const DataToolbarSearchField: React.ForwardRefExoticComponent<Omit<SearchNativeProps, "data-color"> & Pick<SearchProps, "label" | "onChange"> & React.RefAttributes<HTMLInputElement>>; export { DataToolbarSearchField }; export default DataToolbarSearchField; export type { DataToolbarSearchFieldProps };