// Copyright 2017-2025 @pezkuwi/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Bytes } from '@pezkuwi/types'; import type { Props } from '../types.js'; import React from 'react'; import CallDisplay from './Call.js'; import Unknown from './Unknown.js'; function OpaqueCall (props: Props): React.ReactElement { if (!props.isDisabled) { return ( ); } const value = props.registry.createType('Call', (props.defaultValue.value as Bytes).toHex()); return ( ); } export default React.memo(OpaqueCall);