UNPKG

@navikt/ds-react

Version:

React components from the Norwegian Labour and Welfare Administration.

10 lines (9 loc) 302 B
import React from "react"; import { ComboboxOption } from "../types"; interface SelectedOptionsProps { selectedOptions?: ComboboxOption[]; size?: "medium" | "small"; children: React.ReactNode; } declare const SelectedOptions: React.FC<SelectedOptionsProps>; export default SelectedOptions;