components.snippets.Alerts.LoaderAlert.tsx Maven / Gradle / Ivy
import React from 'react'
import classNames from 'classnames'
import InlineSpinner from '../Spinner/InlineSpinner'
import { CommonAlertProps } from './types'
interface Props extends CommonAlertProps {
severity?: string
animate?: boolean
}
export const LoaderAlert = ({
text,
severity,
className,
style,
animate,
t,
}: Props) => (
{text || `${t('loading')}...`}
)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy