mirror of
https://github.com/pezkuwichain/pezkuwi-extension.git
synced 2026-07-14 04:55:43 +00:00
Update domain references to pezkuwichain.app and rebrand from polkadot
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
// Copyright 2019-2025 @pezkuwi/extension-ui authors & contributors
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
import { faTrash } from '@fortawesome/free-solid-svg-icons';
|
||||
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
|
||||
import React from 'react';
|
||||
|
||||
import { styled } from '../styled.js';
|
||||
|
||||
interface Props {
|
||||
className?: string
|
||||
onRemove: () => void
|
||||
}
|
||||
|
||||
function RemoveAuth ({ className, onRemove }: Props): React.ReactElement {
|
||||
return (
|
||||
<FontAwesomeIcon
|
||||
className={className}
|
||||
icon={faTrash}
|
||||
onClick={onRemove}
|
||||
size='lg'
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
||||
export default styled(RemoveAuth)<Props>`
|
||||
cursor: pointer;
|
||||
color: var(--labelColor);
|
||||
margin-right: 1rem;
|
||||
|
||||
&.selected {
|
||||
color: var(--primaryColor);
|
||||
}
|
||||
`;
|
||||
Reference in New Issue
Block a user