// Copyright 2017-2025 @pezkuwi/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; import Button from './Button/index.js'; import { useTranslation } from './translate.js'; interface Props { className?: string; isDisabled?: boolean; label?: string; onClick: () => void; tabIndex?: number; } function ButtonCancel ({ className = '', isDisabled, label, onClick, tabIndex }: Props): React.ReactElement { const { t } = useTranslation(); return (