components.snippets.Alerts.LoaderAlert.jsx Maven / Gradle / Ivy
The newest version!
import classNames from 'classnames'
import React from 'react'
import InlineSpinner from '../Spinner/InlineSpinner'
import { AlertTypes } from './AlertsTypes'
export const LoaderAlert = ({ text, severity, className, style, animate, t }) => (
{text || `${t('loading')}...`}
)
LoaderAlert.propTypes = AlertTypes