UNPKG

@dnb/eufemia

Version:

DNB Eufemia Design System UI Library

8 lines (7 loc) 316 B
import type { ComponentProps } from 'react'; import { Button } from '../../../../../components'; type Props = ComponentProps<typeof Button> & { showConfirmDialog?: boolean; }; export default function CancelButton({ showConfirmDialog, ...buttonProps }: Props): import("react/jsx-runtime").JSX.Element; export {};