mirror of
https://github.com/pezkuwichain/pwap.git
synced 2026-08-05 06:45:43 +00:00
c71ddb6e0d
- Clone Polkadot.js Apps repository - Update package.json with Pezkuwi branding - Add Pezkuwi endpoint to production chains (wss://pezkuwichain.app:9944) - Create comprehensive README for SDK UI - Set up project structure with all packages Next steps: - Apply Kurdistan colors (Kesk, Sor, Zer, Spi + Black) to UI theme - Replace logos with Pezkuwi branding - Test build and deployment
63 lines
1.1 KiB
TypeScript
63 lines
1.1 KiB
TypeScript
// Copyright 2017-2025 @polkadot/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);
|