Bundle Copy

This commit is contained in:
ItsSelis
2023-05-23 17:43:01 +02:00
parent 8aad48f508
commit 3da68ee1b6
420 changed files with 47669 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
import { Box } from '../../components';
import { clamp01 } from 'common/math';
export const Loader = (props) => {
const { value } = props;
return (
<div className="AlertModal__Loader">
<Box className="AlertModal__LoaderProgress" style={{ width: clamp01(value) * 100 + '%' }} />
</div>
);
};