* Deduplicate more icons using Compound Design Tokens Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Iterate Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --------- Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> (cherry picked from commit 7448bd52e2ff354917d6e5f769ca052961c13aa0)
50 lines
1.6 KiB
TypeScript
50 lines
1.6 KiB
TypeScript
/*
|
|
Copyright 2024 New Vector Ltd.
|
|
Copyright 2022 The Matrix.org Foundation C.I.C.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
|
|
import React from "react";
|
|
import CloseIcon from "@vector-im/compound-design-tokens/assets/web/icons/close";
|
|
import BackIcon from "@vector-im/compound-design-tokens/assets/web/icons/chevron-left";
|
|
|
|
import AccessibleButton from "../elements/AccessibleButton";
|
|
import { _t } from "../../../languageHandler";
|
|
|
|
interface Props {
|
|
onCancel: () => void;
|
|
onBack: () => void;
|
|
displayBack?: boolean;
|
|
}
|
|
|
|
const ShareDialogButtons: React.FC<Props> = ({ onBack, onCancel, displayBack }) => {
|
|
return (
|
|
<div className="mx_ShareDialogButtons">
|
|
{displayBack && (
|
|
<AccessibleButton
|
|
className="mx_ShareDialogButtons_button left"
|
|
data-testid="share-dialog-buttons-back"
|
|
aria-label={_t("action|back")}
|
|
onClick={onBack}
|
|
element="button"
|
|
>
|
|
<BackIcon className="mx_ShareDialogButtons_button-icon" />
|
|
</AccessibleButton>
|
|
)}
|
|
<AccessibleButton
|
|
className="mx_ShareDialogButtons_button right"
|
|
data-testid="share-dialog-buttons-cancel"
|
|
aria-label={_t("action|close")}
|
|
onClick={onCancel}
|
|
element="button"
|
|
>
|
|
<CloseIcon className="mx_ShareDialogButtons_button-icon" />
|
|
</AccessibleButton>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default ShareDialogButtons;
|