mirror of
https://github.com/pezkuwichain/pwap.git
synced 2026-08-05 03:15:43 +00:00
971df8edba
- Remove all 3rd party parachain configurations from endpoints: - productionRelayPolkadot.ts: Keep only system parachains - productionRelayDicle.ts: Keep only system parachains - testingRelayZagros.ts: Keep only system parachains - testingRelayTeyrChain.ts: Keep only system parachains - Update domain references: - polkadot.js.org → pezkuwichain.app - wiki.polkadot.network → wiki.pezkuwichain.io - dotapps.io → pezkuwichain.app - statement.polkadot.network → docs.pezkuwichain.io/statement - support.polkadot.network → docs.pezkuwichain.io - Update repository references: - github.com/pezkuwi-js/apps → github.com/pezkuwichain/pwap - Rename system parachains to Pezkuwi ecosystem: - PolkadotAssetHub → PezkuwiAssetHub - polkadotBridgeHub → pezkuwiBridgeHub - polkadotCollectives → pezkuwiCollectives - polkadotCoretime → pezkuwiCoretime - polkadotPeople → pezkuwiPeople - Update network name in claims utility: - Polkadot → Pezkuwi
63 lines
1.1 KiB
TypeScript
63 lines
1.1 KiB
TypeScript
// Copyright 2017-2026 @pezkuwi/react-components authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import React from 'react';
|
|
|
|
import { styled } from './styled.js';
|
|
|
|
interface Props {
|
|
children?: React.ReactNode;
|
|
className?: string;
|
|
isSmall?: boolean;
|
|
}
|
|
|
|
function SummaryBox ({ children, className = '', isSmall }: Props): React.ReactElement<Props> {
|
|
return (
|
|
<StyledDiv className={`${className}${isSmall ? ' isSmall' : ''}`}>
|
|
{children}
|
|
</StyledDiv>
|
|
);
|
|
}
|
|
|
|
const StyledDiv = styled.div`
|
|
align-items: stretch;
|
|
border-radius: 0.25rem;
|
|
display: flex;
|
|
flex-wrap: no-wrap;
|
|
justify-content: space-between;
|
|
margin: 1.5rem 0;
|
|
|
|
> section {
|
|
display: flex;
|
|
flex: 0 1 auto;
|
|
text-align: left;
|
|
}
|
|
|
|
details & {
|
|
display: block;
|
|
margin: 0.5rem 0.25rem;
|
|
opacity: 0.75;
|
|
outline: none;
|
|
overflow: hidden;
|
|
text-align: left;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
|
|
+ div {
|
|
margin-top: 0.75rem;
|
|
}
|
|
}
|
|
|
|
&.isSmall {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.ui.label {
|
|
padding-left: 0;
|
|
padding-right: 0;
|
|
padding-top: 0;
|
|
}
|
|
`;
|
|
|
|
export default React.memo(SummaryBox);
|