// Copyright 2017-2020 @polkadot/react-components authors & contributors // This software may be modified and distributed under the terms // of the Apache-2.0 license. See the LICENSE file for details. import { AccountId, AccountIndex, Address } from '@polkadot/types/interfaces'; import React from 'react'; import { LockedVote } from '@polkadot/react-query'; import { classes } from './util'; export interface Props { className?: string; label?: React.ReactNode; params?: AccountId | AccountIndex | Address | string | Uint8Array | null; withLabel?: boolean; } function LockedVoteDisplay (props: Props): React.ReactElement | null { const { className = '', label, params } = props; if (!params) { return null; } return ( ); } export default React.memo(LockedVoteDisplay);