import type { FC } from '../../lib/teact/teact'; import React, { memo } from '../../lib/teact/teact'; import Spinner from './Spinner'; import buildClassName from '../../util/buildClassName'; import './Loading.scss'; type OwnProps = { color?: 'blue' | 'white' | 'black' | 'yellow'; backgroundColor?: 'light' | 'dark'; onClick?: NoneToVoidFunction; }; const Loading: FC = ({ color = 'blue', backgroundColor, onClick }) => { return (
); }; export default memo(Loading);