Files
pwap/pezkuwi-sdk-ui/packages/react-components/src/SummaryBox.tsx
T
pezkuwichain 1295c36241 Rebrand: polkadot → pezkuwi build fixes
- Fixed TypeScript type assertion issues
- Updated imports from api-augment/substrate to api-augment/bizinikiwi
- Fixed imgConvert.mjs header and imports
- Added @ts-expect-error for runtime-converted types
- Fixed all @polkadot copyright headers to @pezkuwi
2026-01-07 02:32:54 +03:00

63 lines
1.1 KiB
TypeScript

// Copyright 2017-2025 @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);