All Downloads are FREE. Search and download functionalities are using the official Maven repository.

components.snippets.Alerts.LoaderAlert.tsx Maven / Gradle / Ivy

There is a newer version: 7.28.2
Show newest version
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