UNPKG

@navikt/ds-react

Version:

React components from the Norwegian Labour and Welfare Administration.

22 lines (21 loc) 611 B
import React from "react"; import { OverridableComponent } from "../util/types"; export interface ChipsToggleProps extends React.ButtonHTMLAttributes<HTMLButtonElement> { children: string; /** * Toggles aria-pressed and visual changes */ selected?: boolean; /** * Chip-variants * @default "action" */ variant?: "action" | "neutral"; /** * Toggles display of checkmark on selected * @default true */ checkmark?: boolean; } export declare const ToggleChips: OverridableComponent<ChipsToggleProps, HTMLButtonElement>; export default ToggleChips;