Files
pezkuwi-apps/packages/react-components/src/VoteAccount.tsx
T

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);