import React from 'react'; import classNames from 'classnames'; import './LoadingBalls.scss'; interface Props { className?: string; width?: number; height?: number; } const defaultSize = 32; export const LoadingBalls: React.FC = ({ className, width, height }: Props) => ( );