/** * WordPress dependencies */ /** * External dependencies */ import clsx from 'clsx'; /** * Internal dependencies */ import './style.scss'; import Logo from './logo.svg'; export type LoadingAnimationProps = { readonly className?: string; readonly text?: string; }; export const LoadingAnimation = ( { className, text, }: LoadingAnimationProps ): JSX.Element => (
{ text }
}