import { Icon } from 'components/Icon' import * as React from 'react' type Props = { text: React.ReactNode } export function LoadingIndicator({ text }: Props) { return (
{text}
) }