15 lines
334 B
JavaScript
15 lines
334 B
JavaScript
import getColors from '@/styles/colors';
|
|
import { Result } from 'ui/elements';
|
|
import { LoadingOutlined } from 'ui/elements/icons';
|
|
|
|
const colors = getColors();
|
|
|
|
export function Loading() {
|
|
return (
|
|
<Result
|
|
icon={<LoadingOutlined style={{ color: colors.COLOR_PRIMARY }} />}
|
|
title="Загрузка..."
|
|
/>
|
|
);
|
|
}
|