mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-04-22 06:37:57 +00:00
31 lines
715 B
TypeScript
31 lines
715 B
TypeScript
// Copyright 2017-2026 @pezkuwi/react-components authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import React from 'react';
|
|
|
|
import InputAddress from './InputAddress/index.js';
|
|
import { useTranslation } from './translate.js';
|
|
|
|
interface Props {
|
|
className?: string;
|
|
filter?: string[];
|
|
onChange: (value: string | null) => void;
|
|
}
|
|
|
|
function VoteAccount ({ className = '', filter, onChange }: Props): React.ReactElement<Props> {
|
|
const { t } = useTranslation();
|
|
|
|
return (
|
|
<InputAddress
|
|
className={className}
|
|
filter={filter}
|
|
label={t('vote with account')}
|
|
onChange={onChange}
|
|
type='account'
|
|
withLabel
|
|
/>
|
|
);
|
|
}
|
|
|
|
export default React.memo(VoteAccount);
|