Files
pwap/pezkuwi-sdk-ui/packages/react-components/src/SummaryBox.tsx
T
Claude c71ddb6e0d Add Pezkuwi SDK UI - Polkadot.js Apps clone
- 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
2025-11-14 00:55:17 +00:00

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