UNPKG

@navikt/ds-react

Version:

React components from the Norwegian Labour and Welfare Administration.

11 lines (10 loc) 585 B
import React from "react"; import { MonthPickerProps } from "../MonthPicker.types"; export interface MonthPickerStandaloneProps extends Omit<MonthPickerProps, "open" | "onClose" | "onOpenToggle" | "wrapperClassName" | "strategy"> { /** * Monthpicker classname */ className?: string; } export type MonthPickerStandaloneType = React.ForwardRefExoticComponent<MonthPickerStandaloneProps & React.RefAttributes<HTMLDivElement>>; export declare const MonthPickerStandalone: React.ForwardRefExoticComponent<MonthPickerStandaloneProps & React.RefAttributes<HTMLDivElement>>;