UNPKG

@navikt/ds-react

Version:

React components from the Norwegian Labour and Welfare Administration.

11 lines (8 loc) 282 B
import { createContext } from "react"; export interface SearchContextProps { disabled?: boolean; size: "medium" | "small"; variant: "primary" | "secondary" | "simple"; handleClick: () => void; } export const SearchContext = createContext<SearchContextProps | null>(null);