Circle progress gap + rounded

This commit is contained in:
Vins 2024-07-22 14:39:29 +02:00
parent b81bc41390
commit 97e4b2c9a0
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
.root { .root {
display: flex; display: flex;
align-items: center; align-items: center;
gap: 24px; gap: var(--spacing-sm);
svg { svg {
width: 100%; width: 100%;

View File

@ -54,7 +54,7 @@ export default function CircleProgress(props: IProps) {
/> />
</svg> </svg>
<Typography typo={ETypo.TEXT_LG_REGULAR} color={ETypoColor.COLOR_NEUTRAL_950}> <Typography typo={ETypo.TEXT_LG_REGULAR} color={ETypoColor.COLOR_NEUTRAL_950}>
{percentage}% {Math.round(percentage)}%
</Typography> </Typography>
</div> </div>
); );