mirror of
https://github.com/pezkuwichain/pwap.git
synced 2026-06-30 07:37:21 +00:00
1295c36241
- Fixed TypeScript type assertion issues - Updated imports from api-augment/substrate to api-augment/bizinikiwi - Fixed imgConvert.mjs header and imports - Added @ts-expect-error for runtime-converted types - Fixed all @polkadot copyright headers to @pezkuwi
33 lines
752 B
TypeScript
33 lines
752 B
TypeScript
// 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<Props> {
|
|
const { t } = useTranslation();
|
|
|
|
return (
|
|
<Button
|
|
className={className}
|
|
icon='times'
|
|
isDisabled={isDisabled}
|
|
label={label || t('Cancel')}
|
|
onClick={onClick}
|
|
tabIndex={tabIndex}
|
|
/>
|
|
);
|
|
}
|
|
|
|
export default React.memo(ButtonCancel);
|