openreplay/frontend/app/components/ui/Loader/Loader.tsx
Андрей Бабушкин 2b1a9f3378 add locales and lint the project
2025-03-05 16:09:18 +01:00

34 lines
792 B
TypeScript

import React from 'react';
import cn from 'classnames';
import AnimatedSVG, { ICONS } from 'Shared/AnimatedSVG/AnimatedSVG';
import styles from './loader.module.css';
interface Props {
className?: string;
loading?: boolean;
children?: React.ReactNode;
size?: number;
style?: Record<string, any>;
}
const Loader = React.memo<Props>(
({
className = '',
loading = true,
children = null,
size = 50,
style = { minHeight: '150px' },
}) =>
!loading ? (
<>{children}</>
) : (
<div className={cn(styles.wrapper, className)} style={style}>
{/* <div className={ styles.loader } data-size={ size } /> */}
<AnimatedSVG name={ICONS.LOADER} size={size} />
</div>
),
);
Loader.displayName = 'Loader';
export default Loader;