UNPKG

@navikt/ds-react

Version:

React components from the Norwegian Labour and Welfare Administration.

10 lines (9 loc) 297 B
import React from "react"; interface Props { action: "delete" | "retry"; onClick: (event: React.MouseEvent<HTMLButtonElement>) => void; id?: string; title: string; } declare const ItemButton: ({ action, onClick, id, title }: Props) => React.JSX.Element; export default ItemButton;